-- MySQL dump 10.18  Distrib 10.3.26-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: partridg_wp29
-- ------------------------------------------------------
-- Server version	10.3.26-MariaDB

/*!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 `wpgb_commentmeta`
--

DROP TABLE IF EXISTS `wpgb_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci 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_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_commentmeta`
--

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

--
-- Table structure for table `wpgb_comments`
--

DROP TABLE IF EXISTS `wpgb_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_comments`
--

LOCK TABLES `wpgb_comments` WRITE;
/*!40000 ALTER TABLE `wpgb_comments` DISABLE KEYS */;
INSERT INTO `wpgb_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2021-03-18 21:19:53','2021-03-18 21:19:53','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','comment',0,0),(2,276,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2017-11-29 13:49:03','2017-11-29 13:49:03','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\" rel=\"nofollow ugc\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wpgb_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_layerslider`
--

DROP TABLE IF EXISTS `wpgb_layerslider`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_layerslider` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `group_id` int(10) DEFAULT NULL,
  `author` int(10) NOT NULL DEFAULT 0,
  `name` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `slug` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `data` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_c` int(10) NOT NULL,
  `date_m` int(10) NOT NULL,
  `schedule_start` int(10) NOT NULL DEFAULT 0,
  `schedule_end` int(10) NOT NULL DEFAULT 0,
  `flag_hidden` tinyint(1) NOT NULL DEFAULT 0,
  `flag_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `flag_popup` tinyint(1) NOT NULL DEFAULT 0,
  `flag_group` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_layerslider`
--

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

--
-- Table structure for table `wpgb_layerslider_revisions`
--

DROP TABLE IF EXISTS `wpgb_layerslider_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_layerslider_revisions` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `slider_id` int(10) NOT NULL,
  `author` int(10) NOT NULL DEFAULT 0,
  `data` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_c` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_layerslider_revisions`
--

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

--
-- Table structure for table `wpgb_links`
--

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

--
-- Dumping data for table `wpgb_links`
--

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

--
-- Table structure for table `wpgb_options`
--

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

--
-- Dumping data for table `wpgb_options`
--

LOCK TABLES `wpgb_options` WRITE;
/*!40000 ALTER TABLE `wpgb_options` DISABLE KEYS */;
INSERT INTO `wpgb_options` VALUES (1,'siteurl','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk','yes'),(2,'home','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk','yes'),(3,'blogname','Thirsk Lodge Barns','yes'),(4,'blogdescription','Stunning barn conversion perfect for weddings, conferences and events','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','cat@partridgecreative.co.uk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:13:{i:0;s:27:\"LayerSlider/layerslider.php\";i:1;s:27:\"bridge-core/bridge-core.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:23:\"elementor/elementor.php\";i:4;s:31:\"envato-market/envato-market.php\";i:5;s:27:\"js_composer/js_composer.php\";i:6;s:45:\"qode-instagram-widget/qode-instagram-feed.php\";i:7;s:39:\"qode-twitter-feed/qode-twitter-feed.php\";i:8;s:23:\"revslider/revslider.php\";i:9;s:21:\"site-pin/site-pin.php\";i:10;s:31:\"smashballoon/instagram-feed.php\";i:11;s:24:\"wordpress-seo/wp-seo.php\";i:12;s:44:\"wp-simple-booking-calendar-premium/index.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:4:{i:0;s:151:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/plugins/wp-simple-booking-calendar-premium/includes/base/class-shortcodes.php\";i:1;s:126:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/plugins/wp-simple-booking-calendar-premium/index.php\";i:2;s:101:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/plugins/akismet/akismet.php\";i:3;s:0:\"\";}','no'),(40,'template','bridge','yes'),(41,'stylesheet','bridge','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','49752','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'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'),(77,'widget_text','a:10:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:125:\"<span style=\"font-weight: 300;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac.</span>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:541:\"<span style=\"font-family: cormorantgaramond; font-size: 21px; \"> Email:</span>\r\n\r\n[vc_empty_space height=\"5px\"]\r\n\r\ninfo@yournamewinery.com\r\n\r\n[vc_empty_space height=\"20px\"]\r\n\r\n<span style=\"font-family: cormorantgaramond; font-size: 21px; \">Phone:</span>\r\n\r\n[vc_empty_space height=\"5px\"]\r\n\r\n(0080) 7777 85 555\r\n\r\n[vc_empty_space height=\"20px\"]\r\n\r\n<span style=\"font-family: cormorantgaramond; font-size: 21px; \">Address:</span>\r\n\r\n[vc_empty_space height=\"5px\"]\r\n\r\nSpinazzola \r\n76014 Province of Sephora-Tndria-Trapi, Italy 40.962274, 16.160232\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:64:\"[vc_separator type=\"transparent\" thickness=\"0\" up=\"0\" down=\"40\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:7;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:96:\"07815 560782\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:10;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:64:\"[vc_separator type=\"transparent\" thickness=\"0\" up=\"0\" down=\"40\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:12;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:990:\"[vc_separator type=\"transparent\" up=\"26\"]\r\n\r\n[social_icons type=\"circle_social\" icon=\"fa-instagram\" use_custom_size=\"yes\" custom_size=\"16\" custom_shape_size=\"18\" link=\"<a href=\"https://www.instagram.com/thirsk_lodge_barns/\">https://www.instagram.com/thirsk_lodge_barns/</a>\" target=\"_blank\" icon_margin=\"0 7px 0 0\" icon_color=\"#ffffff\" icon_hover_color=\"#404d56\" background_color=\"#404d56\" background_hover_color=\"#667b8a\" background_color_transparency=\"1\" border_width=\"2\" border_color=\"#ffffff\" border_hover_color=\"#ffffff\"][social_icons type=\"circle_social\" icon=\"fa-facebook\" use_custom_size=\"yes\" custom_size=\"16\" custom_shape_size=\"18\" link=\"<a href=\"https://www.facebook.com/thirsklodge/\">https://www.facebook.com/thirsklodge/</a>\" target=\"_blank\" icon_margin=\"0 7px 0 0\" icon_color=\"#ffffff\" icon_hover_color=\"#ffffff\" background_color=\"#404d56\" background_hover_color=\"#667b8a\" background_color_transparency=\"1\" border_width=\"2\" border_color=\"#ffffff\" border_hover_color=\"#ffffff\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:13;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:0:\"\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:14;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:833:\"[social_icons type=\"circle_social\" icon=\"fa-instagram\" use_custom_size=\"yes\" custom_size=\"12\" custom_shape_size=\"14\" link=\"https://www.instagram.com/thirsk_lodge_barns/\" target=\"_blank\" icon_margin=\"0 7px 0 0\" icon_color=\"#ffffff\" icon_hover_color=\"#ffffff\" background_color=\"#404d56\" background_hover_color=\"#667b8a\" background_color_transparency=\"1\" border_width=\"2\" border_color=\"#ffffff\" border_hover_color=\"#ffffff\"][social_icons type=\"circle_social\" icon=\"fa-facebook\" use_custom_size=\"yes\" custom_size=\"12\" custom_shape_size=\"14\" link=\"https://www.facebook.com/thirsklodge/\" target=\"_blank\" icon_margin=\"0 7px 0 0\" icon_color=\"#ffffff\" icon_hover_color=\"#ffffff\" background_color=\"#404d56\" background_hover_color=\"#667b8a\" background_color_transparency=\"1\" border_width=\"2\" border_color=\"#ffffff\" border_hover_color=\"#ffffff\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:3:{s:27:\"LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:31:\"smashballoon/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','8','yes'),(82,'page_on_front','271','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','0','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1631654393','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'initial_db_version','49752','yes'),(99,'wpgb_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{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:29:\"manage_instagram_feed_options\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(100,'fresh_site','0','yes'),(101,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'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'),(103,'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'),(104,'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'),(105,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(106,'sidebars_widgets','a:22:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:7:\"text-13\";}s:7:\"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:12:\"sidebar_page\";a:0:{}s:11:\"header_left\";a:0:{}s:12:\"header_right\";a:0:{}s:19:\"header_bottom_right\";a:1:{i:0;s:7:\"text-14\";}s:20:\"header_bottom_center\";a:0:{}s:8:\"sidearea\";a:3:{i:0;s:13:\"media_image-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";}s:27:\"fullscreen_menu_area_widget\";a:0:{}s:18:\"vertical_menu_area\";a:0:{}s:15:\"footer_column_1\";a:1:{i:0;s:13:\"media_image-3\";}s:15:\"footer_column_2\";a:2:{i:0;s:6:\"text-6\";i:1;s:6:\"text-7\";}s:15:\"footer_column_3\";a:2:{i:0;s:7:\"text-10\";i:1;s:13:\"custom_html-2\";}s:15:\"footer_column_4\";a:0:{}s:11:\"footer_text\";a:1:{i:0;s:25:\"qode_social_icon_widget-2\";}s:16:\"footer_text_left\";a:1:{i:0;s:6:\"text-2\";}s:17:\"footer_text_right\";a:0:{}s:18:\"header_fixed_right\";a:1:{i:0;s:7:\"text-12\";}s:15:\"left_side_fixed\";a:0:{}s:16:\"right_side_fixed\";a:0:{}s:10:\"panel_area\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(107,'cron','a:13:{i:1620937194;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1620938303;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620940793;a:5:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1620940861;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620940862;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:1620941011;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1620956747;a:2:{s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1621012184;a:1:{s:55:\"check_plugin_updates-wp-simple-booking-calendar-premium\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every24hours\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1621027193;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1621231200;a:2:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1621370303;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1621440844;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:3:{i:2;a:15:{s:13:\"attachment_id\";i:270;s:3:\"url\";s:81:\"http://bridge123.qodeinteractive.com/wp-content/uploads/2017/12/sidearea-logo.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:147;s:6:\"height\";i:31;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:1:\"f\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:3;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:320;s:6:\"height\";i:96;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:60:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:988;s:3:\"url\";s:108:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png\";s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_custom_html','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:878:\"[vc_separator type=\"transparent\" up=\"26\"]\r\n\r\n[social_icons type=\"circle_social\" icon=\"fa-instagram\" use_custom_size=\"yes\" custom_size=\"16\" custom_shape_size=\"18\" link=\"https://www.instagram.com/thirsk_lodge_barns/\" target=\"_blank\" icon_margin=\"0 7px 0 0\" icon_color=\"#ffffff\" icon_hover_color=\"#ffffff\" background_color=\"#404d56\" background_hover_color=\"#667b8a\" background_color_transparency=\"1\" border_width=\"2\" border_color=\"#ffffff\" border_hover_color=\"#ffffff\"][social_icons type=\"circle_social\" icon=\"fa-facebook\" use_custom_size=\"yes\" custom_size=\"16\" custom_shape_size=\"18\" link=\"https://www.facebook.com/thirsklodge/\" target=\"_blank\" icon_margin=\"0 7px 0 0\" icon_color=\"#ffffff\" icon_hover_color=\"#ffffff\" background_color=\"#404d56\" background_hover_color=\"#667b8a\" background_color_transparency=\"1\" border_width=\"2\" border_color=\"#ffffff\" border_hover_color=\"#ffffff\"]\";}s:12:\"_multiwidget\";i:1;}','yes'),(118,'recovery_keys','a:0:{}','yes'),(119,'theme_mods_twentytwentyone','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:2;s:6:\"footer\";i:3;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1616102566;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(120,'https_detection_errors','a:1:{s:19:\"bad_response_source\";a:1:{i:0;s:55:\"It looks like the response did not come from this site.\";}}','yes'),(135,'can_compress_scripts','1','no'),(148,'nav_menu_options','a:1:{s:8:\"auto_add\";a:0:{}}','yes'),(151,'finished_updating_comment_type','1','yes'),(157,'current_theme','Bridge','yes'),(158,'theme_mods_bridge','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:14:\"top-navigation\";i:4;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(159,'theme_switched','','yes'),(160,'qode_required_plugins','a:9:{i:0;s:11:\"js_composer\";i:1;s:9:\"revslider\";i:2;s:14:\"contact-form-7\";i:4;s:9:\"elementor\";i:5;s:11:\"bridge-core\";i:6;s:11:\"LayerSlider\";i:8;s:13:\"envato-market\";i:9;s:17:\"qode-twitter-feed\";i:10;s:21:\"qode-instagram-widget\";}','yes'),(164,'ls-plugin-version','6.11.6','yes'),(165,'ls-db-version','6.9.0','yes'),(166,'ls-installed','1','yes'),(167,'ls-date-installed','1616102610','yes'),(168,'ls_gsap_sandboxing','1','yes'),(170,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-b.tools\";i:1;s:16:\"themepunch.tools\";i:2;s:22:\"themepunch-ext-a.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-b.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(171,'revslider_server_refresh','1620142900','yes'),(172,'revslider-update-check-short','1620823111','yes'),(173,'revslider-connection','1','yes'),(174,'revslider-update-hash','e058db45a4457d46d1e1044d7f257e57','yes'),(175,'revslider-latest-version','6.4.11','yes'),(176,'revslider-stable-version','4.2.0','yes'),(177,'revslider-notices','a:1:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:6:\"6.4.10\";s:4:\"text\";s:316:\"<div style=\"display: block; background-color: #1C0950; text-align: \ncenter;\"><a \nhref=\"https://mailchi.mp/sliderrevolution/the-update-your-website-deserves\"\n target=\"_blank\"><img alt=\"wow\" src=\"//updates.themepunch-ext-b.tools/banners/6411_banner.jpg\" width=\"960\" height=\"250\" style=\"margin-bottom: -5px;\"></a></div>\";s:4:\"code\";s:12:\"TPRSV6411-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:\"additional\";a:0:{}}}','yes'),(178,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(179,'rs-addons-counter','30','yes'),(180,'revslider-addons','O:8:\"stdClass\":30:{s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:6:\"6.2.23\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"2.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-b.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.2.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.3.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:6:\"6.2.50\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.4.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-b.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}}','yes'),(181,'revslider-library-check','1620679682','yes'),(182,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'),(183,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(184,'revslider-templates-check','1620823111','yes'),(185,'revslider-templates-hash','b34e16da992470421084a8b82c104a98','yes'),(186,'rs-templates-new','','no');
INSERT INTO `wpgb_options` VALUES (187,'rs-templates','a:3:{s:4:\"hash\";s:32:\"48bf8545f97e508fd931b3fad6d9de79\";s:6:\"slider\";a:507:{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:22:{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;}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:22:{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;}i:11;a:22:{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;}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:22:{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;}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:22:{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;}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:22:{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;}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:22:{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;}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:22:{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;}i:28;a:22:{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;}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:22:{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;}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:22:{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;}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:22:{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;}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:22:{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;}i:66;a:22:{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;}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:22:{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;}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:25:{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;}i:91;a:25:{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;}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:25:{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;}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:22:{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;}i:104;a:22:{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;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.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:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</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:4:\"true\";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:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.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:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</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:4:\"true\";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:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.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:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</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:4:\"true\";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:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.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:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</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:4:\"true\";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:109;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:110;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:111;a:25:{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;}i:112;a:25:{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;}i:113;a:25:{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;}i:114;a:25:{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;}i:115;a:25:{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;}i:116;a:25:{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;}i:117;a:25:{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;}i:118;a:25:{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;}i:119;a:25:{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;}i:120;a:25:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.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:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</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:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:121;a:25:{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;}i:122;a:25:{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;}i:123;a:25:{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;}i:124;a:25:{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;}i:125;a:25:{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;}i:126;a:25:{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;}i:127;a:25:{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;}i:128;a:25:{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;}i:129;a:25:{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;}i:130;a:25:{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;}i:131;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:132;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:133;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:134;a:25:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.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:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</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:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:135;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:136;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:137;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:138;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:139;a:22:{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;}i:140;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:141;a:22:{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;}i:142;a:22:{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;}i:143;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:144;a:22:{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;}i:145;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:146;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:147;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:148;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:149;a:22:{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;}i:150;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:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.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.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";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:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:152;a:25:{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;}i:153;a:25:{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;}i:154;a:25:{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;}i:155;a:25:{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;}i:156;a:25:{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;}i:157;a:25:{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;}i:158;a:25:{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;}i:159;a:25:{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;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:161;a:25:{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;}i:162;a:25:{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;}i:163;a:25:{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;}i:164;a:25:{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;}i:165;a:25:{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;}i:166;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:167;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:168;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:169;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:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.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:\"1024\";s:6:\"height\";s:3:\"768\";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:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:171;a:25:{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;}i:172;a:25:{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;}i:173;a:25:{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;}i:174;a:25:{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;}i:175;a:25:{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;}i:176;a:25:{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;}i:177;a:25:{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;}i:178;a:25:{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;}i:179;a:22:{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;}i:180;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:181;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:182;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:201;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:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.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:\"1024\";s:6:\"height\";s:3:\"768\";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:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:203;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:204;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:205;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:206;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:207;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:208;a:25:{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;}i:209;a:22:{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;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:211;a:25:{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;}i:212;a:25:{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;}i:213;a:25:{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;}i:214;a:25:{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;}i:215;a:25:{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;}i:216;a:25:{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;}i:217;a:25:{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;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:219;a:25:{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;}i:220;a:25:{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;}i:221;a:25:{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;}i:222;a:25:{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;}i:223;a:25:{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;}i:224;a:22:{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;}i:225;a:22:{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;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.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:\"1024\";s:6:\"height\";s:3:\"768\";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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:227;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:228;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:229;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:230;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:231;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:232;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:233;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:234;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:235;a:22:{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.1\";s:8:\"required\";s:5:\"5.4.8\";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;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:237;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:238;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:239;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:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:241;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:242;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:243;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:244;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:245;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:246;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:247;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:248;a:22:{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;}i:249;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:250;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:251;a:25:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:252;a:25:{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;}i:253;a:25:{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;}i:254;a:25:{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;}i:255;a:25:{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;}i:256;a:25:{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;}i:257;a:25:{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;}i:258;a:25:{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;}i:259;a:25:{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;}i:260;a:22:{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;}i:261;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:262;a:22:{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;}i:263;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:264;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:265;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:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:267;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:268;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:269;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:270;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:271;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:272;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:273;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:274;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:275;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:276;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:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:278;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:279;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:280;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:281;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:282;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:283;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:284;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:285;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-package\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:286;a:25:{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.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:\"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;}i:287;a:25:{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;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:289;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:290;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:291;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:292;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:293;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:294;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:295;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:296;a:22:{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;}i:297;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:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:299;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:300;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:301;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:302;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:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:304;a:25:{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;}i:305;a:25:{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;}i:306;a:25:{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;}i:307;a:25:{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;}i:308;a:25:{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;}i:309;a:25:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:310;a:25:{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;}i:311;a:25:{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;}i:312;a:25:{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;}i:313;a:25:{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;}i:314;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:315;a:25:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:316;a:25:{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;}i:317;a:25:{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;}i:318;a:25:{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;}i:319;a:25:{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;}i:320;a:25:{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;}i:321;a:25:{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;}i:322;a:25:{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;}i:323;a:25:{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;}i:324;a:25:{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;}i:325;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:326;a:22:{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;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:328;a:25:{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;}i:329;a:25:{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;}i:330;a:25:{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;}i:331;a:25:{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;}i:332;a:25:{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;}i:333;a:25:{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;}i:334;a:22:{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;}i:335;a:22:{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;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:337;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:338;a:25:{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;}i:339;a:25:{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;}i:340;a:25:{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;}i:341;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:342;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:343;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:344;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:345;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:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:347;a:25:{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;}i:348;a:25:{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;}i:349;a:25:{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;}i:350;a:25:{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;}i:351;a:25:{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;}i:352;a:25:{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;}i:353;a:25:{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;}i:354;a:25:{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;}i:355;a:25:{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;}i:356;a:25:{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;}i:357;a:25:{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;}i:358;a:25:{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;}i:359;a:25:{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;}i:360;a:25:{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;}i:361;a:25:{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;}i:362;a:25:{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;}i:363;a:25:{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;}i:364;a:25:{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;}i:365;a:25:{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;}i:366;a:25:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:367;a:25:{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;}i:368;a:25:{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;}i:369;a:25:{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;}i:370;a:25:{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;}i:371;a:25:{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;}i:372;a:25:{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;}i:373;a:25:{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;}i:374;a:25:{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;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:376;a:25:{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;}i:377;a:25:{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;}i:378;a:25:{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;}i:379;a:25:{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;}i:380;a:25:{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;}i:381;a:25:{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;}i:382;a:25:{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;}i:383;a:25:{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;}i:384;a:25:{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;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:386;a:25:{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;}i:387;a:25:{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;}i:388;a:25:{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;}i:389;a:25:{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;}i:390;a:25:{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;}i:391;a:25:{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;}i:392;a:25:{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;}i:393;a:25:{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;}i:394;a:25:{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;}i:395;a:25:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:396;a:25:{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;}i:397;a:25:{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;}i:398;a:25:{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;}i:399;a:25:{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;}i:400;a:25:{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;}i:401;a:25:{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;}i:402;a:25:{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;}i:403;a:25:{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;}i:404;a:25:{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;}i:405;a:25:{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;}i:406;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:407;a:22:{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;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.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:\"1024\";s:6:\"height\";s:3:\"768\";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:2:{i:0;s:7:\"website\";i:1;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:409;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:410;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:411;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:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:413;a:25:{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;}i:414;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:415;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:416;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:417;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:418;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:419;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:420;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:421;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:422;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:423;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:424;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:425;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:426;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:427;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:428;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:429;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:430;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:431;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:432;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:433;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:434;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:435;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:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;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:438;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:439;a:25:{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;}i:440;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:441;a:25:{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;}i:442;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:443;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:444;a:25:{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;}i:445;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:446;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:447;a:22:{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;}i:448;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:449;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:450;a:25:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:451;a:25:{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;}i:452;a:25:{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;}i:453;a:25:{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;}i:454;a:25:{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;}i:455;a:25:{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;}i:456;a:25:{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;}i:457;a:25:{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;}i:458;a:25:{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;}i:459;a:25:{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;}i:460;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:461;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:462;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:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:464;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:465;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:466;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:467;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:468;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:469;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:470;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:471;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:472;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:473;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:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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:1:{i:0;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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:475;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:476;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:477;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:478;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:479;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:480;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:481;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:482;a:22:{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-video-scroll/\";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;}i:483;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.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:\"1024\";s:6:\"height\";s:3:\"768\";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: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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:484;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:485;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:486;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:487;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:488;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:489;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:490;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:491;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:492;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:493;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:494;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:495;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:496;a:22:{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:187:\"<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;}i:497;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:187:\"<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:498;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.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:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</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:7:\"website\";}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:\"0\";s:14:\"package_parent\";s:4:\"true\";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:499;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:500;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:501;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-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: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:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:502;a:25:{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.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: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;}i:503;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:504;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.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:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:505;a:25:{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;}i:506;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:507;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:508;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:509;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:510;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:511;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:512;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:513;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:514;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:515;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.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:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:516;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.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:14:\"Slider Package\";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-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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:517;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:518;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:519;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:520;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: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:\"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:521;a:25:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";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:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";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;}i:522;a:25:{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.0\";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;}i:523;a:25:{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.0\";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;}i:524;a:22:{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.0\";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:\"slides\";a:502:{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\";}}}}','no'),(188,'rs-templates-counter','0','no'),(189,'revslider_table_version','1.0.8','yes'),(192,'envato_market','a:2:{s:16:\"is_plugin_active\";s:1:\"1\";s:17:\"installed_version\";s:5:\"2.0.6\";}','yes'),(195,'recently_activated','a:0:{}','yes'),(196,'revslider_update_version','6.4.0','yes'),(197,'elementor_version','3.1.4','yes'),(198,'elementor_install_history','a:1:{s:5:\"3.1.4\";i:1616102646;}','yes'),(199,'widget_layerslider_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(200,'widget_qode_instagram_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(201,'widget_qode_twitter_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(202,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(203,'widget_qode_button','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(204,'widget_call_to_action_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(205,'widget_qode_icon_list_item','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(206,'widget_qode_icon_with_text','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(207,'widget_latest_posts_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(208,'widget_qode_latest_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(209,'widget_qode_panel_area_opener','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(210,'widget_qode_portfolio_list','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(211,'widget_related_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(212,'widget_qode_separator','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(213,'widget_qode_social_icon_widget','a:2:{i:2;a:17:{s:4:\"type\";s:13:\"normal_social\";s:9:\"icon_pack\";s:12:\"font_awesome\";s:4:\"icon\";s:12:\"fa-instagram\";s:7:\"fe_icon\";s:0:\"\";s:11:\"custom_size\";s:2:\"20\";s:17:\"custom_shape_size\";s:0:\"\";s:4:\"link\";s:0:\"\";s:6:\"target\";s:5:\"_self\";s:10:\"icon_color\";s:7:\"#ffffff\";s:16:\"icon_hover_color\";s:7:\"#ffffff\";s:16:\"background_color\";s:11:\"transparent\";s:22:\"background_hover_color\";s:0:\"\";s:12:\"border_width\";s:1:\"1\";s:13:\"border_radius\";s:1:\"1\";s:12:\"border_color\";s:7:\"#ffffff\";s:18:\"border_hover_color\";s:7:\"#ffffff\";s:11:\"icon_margin\";s:8:\"0,10,0,0\";}s:12:\"_multiwidget\";i:1;}','yes'),(214,'widget_qode_sticky_sidebar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(215,'envato_market_state','activated','yes'),(216,'vc_version','6.6.0','yes'),(218,'qode_options_proya','a:1998:{s:20:\"enable_grid_elements\";s:2:\"no\";s:12:\"google_fonts\";s:18:\"Cormorant+Garamond\";s:23:\"additional_google_fonts\";s:2:\"no\";s:23:\"additional_google_font1\";s:2:\"-1\";s:23:\"additional_google_font2\";s:2:\"-1\";s:23:\"additional_google_font3\";s:2:\"-1\";s:23:\"additional_google_font4\";s:2:\"-1\";s:23:\"additional_google_font5\";s:2:\"-1\";s:11:\"first_color\";s:7:\"#404d56\";s:12:\"second_color\";s:0:\"\";s:11:\"third_color\";s:0:\"\";s:12:\"fourth_color\";s:0:\"\";s:16:\"background_color\";s:7:\"#ffffff\";s:22:\"background_color_boxes\";s:0:\"\";s:15:\"selection_color\";s:7:\"#404d56\";s:27:\"gradient_style1_start_color\";s:0:\"\";s:25:\"gradient_style1_end_color\";s:0:\"\";s:19:\"transparent_content\";s:2:\"no\";s:36:\"transparent_content_background_color\";s:0:\"\";s:36:\"transparent_content_background_image\";s:0:\"\";s:44:\"transparent_content_pattern_background_image\";s:0:\"\";s:19:\"overlapping_content\";s:2:\"no\";s:26:\"overlapping_content_amount\";s:0:\"\";s:27:\"overlapping_content_padding\";s:0:\"\";s:5:\"boxed\";s:2:\"no\";s:20:\"background_color_box\";s:0:\"\";s:16:\"background_image\";s:0:\"\";s:24:\"pattern_background_image\";s:0:\"\";s:8:\"paspartu\";s:2:\"no\";s:14:\"paspartu_color\";s:0:\"\";s:14:\"paspartu_width\";s:0:\"\";s:25:\"paspartu_header_alignment\";s:2:\"no\";s:22:\"paspartu_header_inside\";s:2:\"no\";s:29:\"vertical_menu_inside_paspartu\";s:3:\"yes\";s:25:\"paspartu_footer_alignment\";s:2:\"no\";s:15:\"paspartu_on_top\";s:3:\"yes\";s:21:\"paspartu_on_top_fixed\";s:2:\"no\";s:25:\"paspartu_on_bottom_slider\";s:2:\"no\";s:18:\"paspartu_on_bottom\";s:3:\"yes\";s:24:\"paspartu_on_bottom_fixed\";s:2:\"no\";s:25:\"enable_content_top_margin\";s:3:\"yes\";s:21:\"initial_content_width\";s:9:\"grid_1300\";s:16:\"page_transitions\";s:1:\"0\";s:19:\"ajax_animate_header\";s:2:\"no\";s:19:\"page_loading_effect\";s:2:\"no\";s:17:\"loading_animation\";s:3:\"off\";s:25:\"loading_animation_spinner\";s:5:\"pulse\";s:13:\"spinner_color\";s:0:\"\";s:24:\"loading_background_color\";s:0:\"\";s:13:\"loading_image\";s:0:\"\";s:37:\"loading_animation_left_menu_alignment\";s:2:\"no\";s:13:\"smooth_scroll\";s:3:\"yes\";s:27:\"elements_animation_on_touch\";s:2:\"no\";s:16:\"show_back_button\";s:3:\"yes\";s:14:\"responsiveness\";s:3:\"yes\";s:30:\"content_sidebar_responsiveness\";s:2:\"no\";s:13:\"favicon_image\";s:117:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Favicon-Thirsk-Lodge-Barns.png\";s:22:\"internal_no_ajax_links\";s:0:\"\";s:10:\"custom_css\";s:1305:\"#nav-menu-item-376 span {\r\nbackground-color: none !important;\r\nborder: 2px solid #FFFFFF !important;\r\npadding: 8px 4px 8px 8px !important;\r\n}\r\n\r\n#nav-menu-item-376 span.plus {\r\ndisplay: none !important;\r\n}\r\n\r\n.qode_video_box .qode_video_image .qode_video_box_button_arrow{\r\nleft: 52%;\r\n}\r\n\r\n.header_inner_right .side_menu_button a{\r\n    top: 3px\r\n}\r\n\r\n@media screen and (max-width: 768px) {\r\n.q_elements_holder.custom_holder_reverse_order {\r\n   display: -webkit-flex;\r\n   display: flex;\r\n   -webkit-flex-direction: column-reverse;  \r\n   -ms-flex-direction: column-reverse; \r\n   flex-direction: column-reverse;\r\n}\r\n@media only screen and (min-width: 1600px){\r\n    .header_bottom .container_inner {\r\n        width: 1590px !important;\r\n    }\r\n\r\n    .header_bottom .main_menu{\r\n        padding-right: 50px;\r\n    }\r\n}\r\n@media only screen and (max-width: 1200px){    nav.main_menu > ul > li > a{\r\n        font-size: 11px;\r\n        padding: 0 5px;\r\n    }\r\n\r\n    .header_bottom{\r\n        padding: 0 20px;\r\n    }\r\n\r\n}\r\n@media screen and (max-width: 1000px) {\r\n.home .carousel:not(.advanced_responsiveness) .carousel-inner .qbutton {\r\n    height: 44px;\r\n    line-height: 44px;\r\n    padding-left: 40px;\r\n    padding-right: 40px;\r\n}\r\n}\r\nli#nav-menu-item-18211 span.underline_dash {\r\n display: none !important;\r\n}\r\n\r\n \";s:14:\"custom_svg_css\";s:0:\"\";s:9:\"custom_js\";s:0:\"\";s:21:\"google_analytics_code\";s:0:\"\";s:16:\"disable_qode_seo\";s:2:\"no\";s:13:\"meta_keywords\";s:0:\"\";s:16:\"meta_description\";s:0:\"\";s:19:\"google_maps_api_key\";s:39:\"AIzaSyBw1zuIQEo37eQDvIYbCmgcjVB4voHMKJY\";s:10:\"logo_image\";s:108:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png\";s:16:\"logo_image_light\";s:108:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png\";s:15:\"logo_image_dark\";s:108:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png\";s:17:\"logo_image_sticky\";s:108:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png\";s:23:\"logo_image_fixed_hidden\";s:0:\"\";s:17:\"logo_image_mobile\";s:122:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Venue_Thirsk-Lodge-Barn.png\";s:20:\"vertical_logo_bottom\";s:0:\"\";s:25:\"logo_mobile_header_height\";s:2:\"80\";s:18:\"logo_mobile_height\";s:2:\"80\";s:13:\"vertical_area\";s:2:\"no\";s:14:\"header_in_grid\";s:3:\"yes\";s:24:\"header_bottom_appearance\";s:5:\"stick\";s:26:\"search_left_sidearea_right\";s:2:\"no\";s:24:\"scroll_amount_for_sticky\";s:4:\"1200\";s:19:\"hide_initial_sticky\";s:2:\"no\";s:30:\"scroll_amount_for_fixed_hiding\";s:0:\"\";s:13:\"menu_position\";s:0:\"\";s:17:\"center_logo_image\";s:2:\"no\";s:34:\"search_left_sidearea_right_regular\";s:2:\"no\";s:25:\"center_logo_image_animate\";s:2:\"no\";s:30:\"disable_text_shadow_for_sticky\";s:3:\"yes\";s:13:\"header_height\";s:3:\"120\";s:20:\"header_height_scroll\";s:0:\"\";s:20:\"header_height_sticky\";s:3:\"120\";s:27:\"header_height_scroll_hidden\";s:0:\"\";s:32:\"header_fixed_top_logo_background\";s:0:\"\";s:12:\"header_style\";s:0:\"\";s:29:\"enable_header_style_on_scroll\";s:2:\"no\";s:23:\"header_background_color\";s:7:\"#404d56\";s:30:\"header_background_color_scroll\";s:0:\"\";s:30:\"header_background_color_sticky\";s:7:\"#404d56\";s:38:\"header_background_transparency_initial\";s:1:\"0\";s:37:\"header_background_transparency_scroll\";s:0:\"\";s:37:\"header_background_transparency_sticky\";s:0:\"\";s:26:\"header_bottom_border_color\";s:11:\"transparent\";s:32:\"header_botom_border_transparency\";s:1:\"0\";s:27:\"header_botom_border_in_grid\";s:2:\"no\";s:21:\"menu_background_color\";s:0:\"\";s:32:\"dropdown_separator_beetwen_items\";s:2:\"no\";s:22:\"dropdown_border_around\";s:2:\"no\";s:22:\"header_separator_color\";s:0:\"\";s:25:\"dropdown_background_color\";s:7:\"#404d56\";s:32:\"dropdown_background_transparency\";s:0:\"\";s:27:\"enable_wide_manu_background\";s:2:\"no\";s:13:\"enable_search\";s:2:\"no\";s:11:\"search_type\";s:29:\"search_slides_from_window_top\";s:13:\"search_height\";s:0:\"\";s:16:\"search_animation\";s:4:\"fade\";s:28:\"fullscreen_search_icon_color\";s:0:\"\";s:30:\"search_cover_only_bottom_yesno\";s:2:\"no\";s:16:\"search_icon_pack\";s:12:\"font_awesome\";s:23:\"search_background_color\";s:0:\"\";s:17:\"search_text_color\";s:0:\"\";s:26:\"search_text_disabled_color\";s:0:\"\";s:20:\"search_text_fontsize\";s:0:\"\";s:25:\"search_text_texttransform\";s:0:\"\";s:24:\"search_text_google_fonts\";s:2:\"-1\";s:21:\"search_text_fontstyle\";s:0:\"\";s:22:\"search_text_fontweight\";s:0:\"\";s:25:\"search_text_letterspacing\";s:0:\"\";s:23:\"search_label_text_color\";s:0:\"\";s:26:\"search_label_text_fontsize\";s:0:\"\";s:31:\"search_label_text_texttransform\";s:0:\"\";s:30:\"search_label_text_google_fonts\";s:2:\"-1\";s:27:\"search_label_text_fontstyle\";s:0:\"\";s:28:\"search_label_text_fontweight\";s:0:\"\";s:31:\"search_label_text_letterspacing\";s:0:\"\";s:23:\"header_search_icon_size\";s:0:\"\";s:17:\"search_icon_color\";s:0:\"\";s:23:\"search_icon_hover_color\";s:0:\"\";s:26:\"search_icon_disabled_color\";s:0:\"\";s:16:\"search_icon_size\";s:0:\"\";s:18:\"search_close_color\";s:0:\"\";s:24:\"search_close_hover_color\";s:0:\"\";s:17:\"search_close_size\";s:0:\"\";s:19:\"search_border_color\";s:0:\"\";s:25:\"search_border_focus_color\";s:0:\"\";s:16:\"enable_side_area\";s:2:\"no\";s:14:\"side_area_type\";s:28:\"side_menu_slide_with_content\";s:26:\"side_area_button_icon_pack\";s:11:\"linea_icons\";s:19:\"side_area_icon_icon\";s:7:\"fa-bars\";s:22:\"side_area_icon_fe_icon\";s:0:\"\";s:25:\"side_area_icon_linea_icon\";s:23:\"icon-arrows-hamburger-2\";s:23:\"side_area_icon_dripicon\";s:0:\"\";s:15:\"side_area_width\";s:2:\"30\";s:31:\"side_area_content_overlay_color\";s:7:\"#000000\";s:33:\"side_area_content_overlay_opacity\";s:3:\"0.5\";s:34:\"side_area_slide_with_content_width\";s:9:\"width_370\";s:15:\"side_area_title\";s:0:\"\";s:26:\"side_area_background_color\";s:7:\"#fcfcfc\";s:21:\"side_area_padding_top\";s:2:\"75\";s:23:\"side_area_padding_right\";s:2:\"34\";s:24:\"side_area_padding_bottom\";s:0:\"\";s:22:\"side_area_padding_left\";s:2:\"57\";s:19:\"side_area_alignment\";s:4:\"left\";s:20:\"side_area_text_color\";s:7:\"#45484b\";s:26:\"side_area_text_hover_color\";s:7:\"#45484b\";s:25:\"side_area_text_lineheight\";s:2:\"26\";s:28:\"side_area_text_texttransform\";s:4:\"none\";s:24:\"side_area_text_font_size\";s:2:\"15\";s:29:\"side_area_text_letter_spacing\";s:3:\"0.5\";s:26:\"side_area_text_font_weight\";s:3:\"400\";s:21:\"side_area_title_color\";s:7:\"#45484b\";s:25:\"side_area_title_font_size\";s:2:\"21\";s:30:\"side_area_title_letter_spacing\";s:1:\"0\";s:27:\"side_area_title_font_weight\";s:3:\"400\";s:26:\"side_area_close_icon_style\";s:4:\"dark\";s:17:\"enable_popup_menu\";s:2:\"no\";s:26:\"popup_menu_animation_style\";s:0:\"\";s:16:\"logo_image_popup\";s:0:\"\";s:25:\"font_icon_pack_icon_popup\";s:0:\"\";s:16:\"popup_menu_color\";s:0:\"\";s:22:\"popup_menu_hover_color\";s:0:\"\";s:33:\"popup_menu_hover_background_color\";s:0:\"\";s:23:\"popup_menu_google_fonts\";s:2:\"-1\";s:19:\"popup_menu_fontsize\";s:0:\"\";s:21:\"popup_menu_lineheight\";s:0:\"\";s:24:\"popup_menu_texttransform\";s:0:\"\";s:20:\"popup_menu_fontstyle\";s:0:\"\";s:21:\"popup_menu_fontweight\";s:0:\"\";s:24:\"popup_menu_letterspacing\";s:0:\"\";s:20:\"popup_menu_color_2nd\";s:0:\"\";s:26:\"popup_menu_hover_color_2nd\";s:0:\"\";s:37:\"popup_menu_hover_background_color_2nd\";s:0:\"\";s:27:\"popup_menu_google_fonts_2nd\";s:2:\"-1\";s:23:\"popup_menu_fontsize_2nd\";s:0:\"\";s:25:\"popup_menu_lineheight_2nd\";s:0:\"\";s:28:\"popup_menu_texttransform_2nd\";s:0:\"\";s:24:\"popup_menu_fontstyle_2nd\";s:0:\"\";s:25:\"popup_menu_fontweight_2nd\";s:0:\"\";s:28:\"popup_menu_letterspacing_2nd\";s:0:\"\";s:27:\"popup_menu_background_color\";s:0:\"\";s:34:\"popup_menu_background_transparency\";s:0:\"\";s:29:\"popup_menu_close_button_color\";s:0:\"\";s:15:\"header_top_area\";s:2:\"no\";s:22:\"header_top_area_scroll\";s:2:\"no\";s:22:\"hide_top_bar_on_mobile\";s:2:\"no\";s:17:\"header_top_height\";s:0:\"\";s:27:\"header_top_background_color\";s:0:\"\";s:23:\"top_header_border_color\";s:0:\"\";s:24:\"top_header_border_weight\";s:0:\"\";s:23:\"top_header_area_padding\";s:0:\"\";s:18:\"vertical_area_type\";s:0:\"\";s:33:\"vertical_area_hidden_button_color\";s:0:\"\";s:38:\"vertical_area_hidden_button_margin_top\";s:0:\"\";s:19:\"vertical_area_width\";s:9:\"width_260\";s:26:\"vertical_area_transparency\";s:2:\"no\";s:34:\"vertical_area_submenu_opening_type\";s:0:\"\";s:39:\"vertical_area_vertically_center_content\";s:2:\"no\";s:24:\"vertical_area_background\";s:0:\"\";s:39:\"vertical_area_float_dropdown_bckg_color\";s:0:\"\";s:38:\"vertical_area_float_dropdown_alignment\";s:0:\"\";s:30:\"vertical_area_background_image\";s:0:\"\";s:24:\"vertical_area_text_color\";s:0:\"\";s:19:\"left_menu_alignment\";s:4:\"left\";s:19:\"vertical_menu_color\";s:0:\"\";s:24:\"vertical_menu_hovercolor\";s:0:\"\";s:26:\"vertical_menu_google_fonts\";s:2:\"-1\";s:22:\"vertical_menu_fontsize\";s:0:\"\";s:24:\"vertical_menu_lineheight\";s:0:\"\";s:23:\"vertical_menu_fontstyle\";s:0:\"\";s:24:\"vertical_menu_fontweight\";s:0:\"\";s:27:\"vertical_menu_letterspacing\";s:0:\"\";s:27:\"vertical_menu_texttransform\";s:0:\"\";s:23:\"vertical_dropdown_color\";s:0:\"\";s:28:\"vertical_dropdown_hovercolor\";s:0:\"\";s:30:\"vertical_dropdown_google_fonts\";s:2:\"-1\";s:26:\"vertical_dropdown_fontsize\";s:0:\"\";s:28:\"vertical_dropdown_lineheight\";s:0:\"\";s:27:\"vertical_dropdown_fontstyle\";s:0:\"\";s:28:\"vertical_dropdown_fontweight\";s:0:\"\";s:31:\"vertical_dropdown_letterspacing\";s:0:\"\";s:31:\"vertical_dropdown_texttransform\";s:0:\"\";s:32:\"vertical_dropdown_color_thirdlvl\";s:0:\"\";s:37:\"vertical_dropdown_hovercolor_thirdlvl\";s:0:\"\";s:39:\"vertical_dropdown_google_fonts_thirdlvl\";s:2:\"-1\";s:35:\"vertical_dropdown_fontsize_thirdlvl\";s:0:\"\";s:37:\"vertical_dropdown_lineheight_thirdlvl\";s:0:\"\";s:36:\"vertical_dropdown_fontstyle_thirdlvl\";s:0:\"\";s:37:\"vertical_dropdown_fontweight_thirdlvl\";s:0:\"\";s:40:\"vertical_dropdown_letterspacing_thirdlvl\";s:0:\"\";s:40:\"vertical_dropdown_texttransform_thirdlvl\";s:0:\"\";s:22:\"mobile_separator_color\";s:7:\"#ffffff\";s:23:\"mobile_background_color\";s:7:\"#404d56\";s:34:\"mobile_header_top_background_color\";s:7:\"#404d56\";s:28:\"mobile_menu_button_icon_pack\";s:12:\"font_awesome\";s:21:\"mobile_menu_icon_icon\";s:7:\"fa-bars\";s:24:\"mobile_menu_icon_fe_icon\";s:0:\"\";s:27:\"mobile_menu_icon_linea_icon\";s:0:\"\";s:25:\"mobile_menu_icon_dripicon\";s:0:\"\";s:20:\"header_buttons_color\";s:7:\"#ffffff\";s:26:\"header_buttons_hover_color\";s:7:\"#ffffff\";s:24:\"header_buttons_font_size\";s:2:\"29\";s:19:\"header_buttons_size\";s:6:\"normal\";s:17:\"uncovering_footer\";s:2:\"no\";s:28:\"footer_main_image_background\";s:0:\"\";s:15:\"show_footer_top\";s:3:\"yes\";s:14:\"footer_in_grid\";s:3:\"yes\";s:18:\"footer_top_columns\";s:1:\"3\";s:21:\"footer_col1_alignment\";s:6:\"center\";s:21:\"footer_col2_alignment\";s:6:\"center\";s:21:\"footer_col3_alignment\";s:6:\"center\";s:21:\"footer_col4_alignment\";s:0:\"\";s:30:\"advanced_footer_top_responsive\";s:2:\"no\";s:36:\"footer_top_responsive_advanced_width\";s:4:\"1000\";s:21:\"footer_top_responsive\";s:3:\"yes\";s:27:\"footer_top_background_color\";s:7:\"#404d56\";s:22:\"footer_top_title_color\";s:7:\"#ffffff\";s:21:\"footer_top_text_color\";s:7:\"#ffffff\";s:17:\"footer_link_color\";s:7:\"#ffffff\";s:23:\"footer_link_hover_color\";s:7:\"#ffffff\";s:23:\"footer_image_background\";s:0:\"\";s:23:\"footer_top_border_color\";s:0:\"\";s:23:\"footer_top_border_width\";s:0:\"\";s:25:\"footer_top_border_in_grid\";s:2:\"no\";s:22:\"footer_top_padding_top\";s:2:\"80\";s:24:\"footer_top_padding_right\";s:0:\"\";s:25:\"footer_top_padding_bottom\";s:2:\"40\";s:23:\"footer_top_padding_left\";s:0:\"\";s:21:\"footer_angled_section\";s:2:\"no\";s:31:\"footer_angled_section_direction\";s:18:\"from_left_to_right\";s:38:\"footer_angled_section_background_color\";s:0:\"\";s:11:\"footer_text\";s:3:\"yes\";s:21:\"footer_bottom_in_grid\";s:2:\"no\";s:21:\"footer_bottom_columns\";s:1:\"2\";s:30:\"footer_bottom_background_color\";s:7:\"#404d56\";s:24:\"footer_bottom_text_color\";s:7:\"#ffffff\";s:30:\"footer_bottom_link_hover_color\";s:7:\"#ffffff\";s:26:\"footer_bottom_border_color\";s:0:\"\";s:26:\"footer_bottom_border_width\";s:1:\"0\";s:28:\"footer_bottom_border_in_grid\";s:2:\"no\";s:25:\"footer_bottom_padding_top\";s:1:\"0\";s:27:\"footer_bottom_padding_right\";s:0:\"\";s:28:\"footer_bottom_padding_bottom\";s:1:\"0\";s:26:\"footer_bottom_padding_left\";s:0:\"\";s:30:\"footer_bottom_image_background\";s:0:\"\";s:26:\"footer_custom_menu_spacing\";s:0:\"\";s:20:\"dont_show_page_title\";s:2:\"no\";s:18:\"animate_title_area\";s:2:\"no\";s:25:\"dont_show_page_title_text\";s:2:\"no\";s:19:\"page_title_position\";s:6:\"center\";s:22:\"predefined_title_sizes\";s:5:\"large\";s:17:\"title_text_shadow\";s:2:\"no\";s:17:\"title_text_margin\";s:0:\"\";s:22:\"title_background_color\";s:0:\"\";s:11:\"title_image\";s:0:\"\";s:22:\"responsive_title_image\";s:2:\"no\";s:17:\"fixed_title_image\";s:2:\"no\";s:12:\"title_height\";s:0:\"\";s:19:\"title_overlay_image\";s:0:\"\";s:15:\"title_separator\";s:2:\"no\";s:21:\"title_separator_color\";s:0:\"\";s:24:\"title_gradient_separator\";s:2:\"no\";s:21:\"title_separator_width\";s:0:\"\";s:19:\"enable_title_angled\";s:2:\"no\";s:30:\"title_angled_section_direction\";s:18:\"from_left_to_right\";s:26:\"title_angled_section_color\";s:0:\"\";s:24:\"border_bottom_title_area\";s:2:\"no\";s:30:\"border_bottom_title_area_color\";s:0:\"\";s:32:\"border_bottom_in_grid_title_area\";s:2:\"no\";s:18:\"margin_after_title\";s:0:\"\";s:29:\"margin_after_title_responsive\";s:0:\"\";s:18:\"enable_breadcrumbs\";s:2:\"no\";s:17:\"breadcrumbs_color\";s:0:\"\";s:35:\"page_title_whole_content_animations\";s:2:\"no\";s:35:\"page_title_whole_content_data_start\";s:0:\"\";s:43:\"page_title_whole_content_start_custom_style\";s:0:\"\";s:33:\"page_title_whole_content_data_end\";s:0:\"\";s:41:\"page_title_whole_content_end_custom_style\";s:0:\"\";s:21:\"page_title_animations\";s:2:\"no\";s:21:\"page_title_data_start\";s:0:\"\";s:29:\"page_title_start_custom_style\";s:0:\"\";s:19:\"page_title_data_end\";s:0:\"\";s:27:\"page_title_end_custom_style\";s:0:\"\";s:31:\"page_title_separator_animations\";s:2:\"no\";s:31:\"page_title_separator_data_start\";s:0:\"\";s:39:\"page_title_separator_start_custom_style\";s:0:\"\";s:29:\"page_title_separator_data_end\";s:0:\"\";s:37:\"page_title_separator_end_custom_style\";s:0:\"\";s:24:\"page_subtitle_animations\";s:2:\"no\";s:24:\"page_subtitle_data_start\";s:0:\"\";s:32:\"page_subtitle_start_custom_style\";s:0:\"\";s:22:\"page_subtitle_data_end\";s:0:\"\";s:30:\"page_subtitle_end_custom_style\";s:0:\"\";s:33:\"page_title_breadcrumbs_animations\";s:2:\"no\";s:33:\"page_title_breadcrumbs_data_start\";s:0:\"\";s:41:\"page_title_breadcrumbs_start_custom_style\";s:0:\"\";s:31:\"page_title_breadcrumbs_data_end\";s:0:\"\";s:39:\"page_title_breadcrumbs_end_custom_style\";s:0:\"\";s:8:\"h1_color\";s:7:\"#ffffff\";s:11:\"h1_fontsize\";s:2:\"55\";s:13:\"h1_lineheight\";s:2:\"65\";s:16:\"h1_texttransform\";s:4:\"none\";s:15:\"h1_google_fonts\";s:18:\"Cormorant+Garamond\";s:12:\"h1_fontstyle\";s:6:\"normal\";s:13:\"h1_fontweight\";s:3:\"600\";s:16:\"h1_letterspacing\";s:1:\"2\";s:8:\"h2_color\";s:7:\"#404d56\";s:11:\"h2_fontsize\";s:2:\"48\";s:13:\"h2_lineheight\";s:2:\"58\";s:16:\"h2_texttransform\";s:4:\"none\";s:15:\"h2_google_fonts\";s:18:\"Cormorant+Garamond\";s:12:\"h2_fontstyle\";s:6:\"normal\";s:13:\"h2_fontweight\";s:3:\"400\";s:16:\"h2_letterspacing\";s:1:\"2\";s:8:\"h3_color\";s:7:\"#404d56\";s:11:\"h3_fontsize\";s:2:\"40\";s:13:\"h3_lineheight\";s:2:\"50\";s:16:\"h3_texttransform\";s:4:\"none\";s:15:\"h3_google_fonts\";s:18:\"Cormorant+Garamond\";s:12:\"h3_fontstyle\";s:6:\"normal\";s:13:\"h3_fontweight\";s:3:\"400\";s:16:\"h3_letterspacing\";s:1:\"1\";s:8:\"h4_color\";s:7:\"#404d56\";s:11:\"h4_fontsize\";s:2:\"24\";s:13:\"h4_lineheight\";s:2:\"34\";s:16:\"h4_texttransform\";s:4:\"none\";s:15:\"h4_google_fonts\";s:18:\"Cormorant+Garamond\";s:12:\"h4_fontstyle\";s:6:\"normal\";s:13:\"h4_fontweight\";s:3:\"600\";s:16:\"h4_letterspacing\";s:1:\"3\";s:8:\"h5_color\";s:7:\"#404d56\";s:11:\"h5_fontsize\";s:2:\"18\";s:13:\"h5_lineheight\";s:2:\"28\";s:16:\"h5_texttransform\";s:9:\"uppercase\";s:15:\"h5_google_fonts\";s:18:\"Cormorant+Garamond\";s:12:\"h5_fontstyle\";s:6:\"normal\";s:13:\"h5_fontweight\";s:3:\"600\";s:16:\"h5_letterspacing\";s:1:\"3\";s:8:\"h6_color\";s:7:\"#969696\";s:11:\"h6_fontsize\";s:2:\"13\";s:13:\"h6_lineheight\";s:2:\"23\";s:16:\"h6_texttransform\";s:9:\"uppercase\";s:15:\"h6_google_fonts\";s:4:\"Lato\";s:12:\"h6_fontstyle\";s:6:\"normal\";s:13:\"h6_fontweight\";s:3:\"400\";s:16:\"h6_letterspacing\";s:4:\"4.55\";s:18:\"h1_fontsize_tablet\";s:2:\"45\";s:20:\"h1_lineheight_tablet\";s:2:\"55\";s:23:\"h1_letterspacing_tablet\";s:0:\"\";s:18:\"h2_fontsize_tablet\";s:2:\"41\";s:20:\"h2_lineheight_tablet\";s:2:\"51\";s:23:\"h2_letterspacing_tablet\";s:0:\"\";s:18:\"h3_fontsize_tablet\";s:2:\"38\";s:20:\"h3_lineheight_tablet\";s:2:\"48\";s:23:\"h3_letterspacing_tablet\";s:0:\"\";s:18:\"h4_fontsize_tablet\";s:0:\"\";s:20:\"h4_lineheight_tablet\";s:0:\"\";s:23:\"h4_letterspacing_tablet\";s:0:\"\";s:18:\"h5_fontsize_tablet\";s:0:\"\";s:20:\"h5_lineheight_tablet\";s:0:\"\";s:23:\"h5_letterspacing_tablet\";s:0:\"\";s:18:\"h6_fontsize_tablet\";s:0:\"\";s:20:\"h6_lineheight_tablet\";s:0:\"\";s:23:\"h6_letterspacing_tablet\";s:0:\"\";s:18:\"h1_fontsize_mobile\";s:2:\"30\";s:20:\"h1_lineheight_mobile\";s:2:\"40\";s:23:\"h1_letterspacing_mobile\";s:0:\"\";s:18:\"h2_fontsize_mobile\";s:2:\"24\";s:20:\"h2_lineheight_mobile\";s:2:\"34\";s:23:\"h2_letterspacing_mobile\";s:0:\"\";s:18:\"h3_fontsize_mobile\";s:2:\"20\";s:20:\"h3_lineheight_mobile\";s:2:\"30\";s:23:\"h3_letterspacing_mobile\";s:0:\"\";s:18:\"h4_fontsize_mobile\";s:0:\"\";s:20:\"h4_lineheight_mobile\";s:0:\"\";s:23:\"h4_letterspacing_mobile\";s:0:\"\";s:18:\"h5_fontsize_mobile\";s:0:\"\";s:20:\"h5_lineheight_mobile\";s:0:\"\";s:23:\"h5_letterspacing_mobile\";s:0:\"\";s:18:\"h6_fontsize_mobile\";s:0:\"\";s:20:\"h6_lineheight_mobile\";s:0:\"\";s:23:\"h6_letterspacing_mobile\";s:0:\"\";s:10:\"text_color\";s:7:\"#455056\";s:13:\"text_fontsize\";s:2:\"18\";s:15:\"text_lineheight\";s:2:\"27\";s:17:\"text_google_fonts\";s:4:\"Lato\";s:14:\"text_fontstyle\";s:6:\"normal\";s:15:\"text_fontweight\";s:3:\"300\";s:11:\"text_margin\";s:2:\"10\";s:20:\"text_fontsize_tablet\";s:2:\"16\";s:22:\"text_lineheight_tablet\";s:0:\"\";s:25:\"text_letterspacing_tablet\";s:0:\"\";s:20:\"text_fontsize_mobile\";s:2:\"16\";s:22:\"text_lineheight_mobile\";s:0:\"\";s:25:\"text_letterspacing_mobile\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:15:\"link_hovercolor\";s:0:\"\";s:14:\"link_fontstyle\";s:0:\"\";s:15:\"link_fontweight\";s:0:\"\";s:19:\"link_fontdecoration\";s:0:\"\";s:10:\"menu_color\";s:7:\"#ffffff\";s:15:\"menu_hovercolor\";s:7:\"#ffffff\";s:16:\"menu_activecolor\";s:7:\"#ffffff\";s:27:\"menu_hover_background_color\";s:11:\"transparent\";s:17:\"menu_google_fonts\";s:4:\"Lato\";s:13:\"menu_fontsize\";s:2:\"14\";s:15:\"menu_lineheight\";s:0:\"\";s:40:\"menu_hover_background_color_transparency\";s:0:\"\";s:14:\"menu_fontstyle\";s:6:\"normal\";s:15:\"menu_fontweight\";s:3:\"400\";s:18:\"menu_letterspacing\";s:1:\"4\";s:19:\"menu_text_transform\";s:9:\"uppercase\";s:19:\"menu_underline_dash\";s:3:\"yes\";s:25:\"menu_underline_dash_color\";s:0:\"\";s:25:\"menu_underline_dash_width\";s:1:\"1\";s:26:\"menu_underline_dash_height\";s:1:\"1\";s:29:\"menu_underline_dash_alignment\";s:6:\"center\";s:14:\"dropdown_color\";s:7:\"#ffffff\";s:19:\"dropdown_hovercolor\";s:7:\"#ffffff\";s:21:\"dropdown_google_fonts\";s:4:\"Lato\";s:17:\"dropdown_fontsize\";s:2:\"13\";s:19:\"dropdown_lineheight\";s:0:\"\";s:27:\"dropdown_padding_top_bottom\";s:0:\"\";s:18:\"dropdown_fontstyle\";s:6:\"normal\";s:19:\"dropdown_fontweight\";s:3:\"400\";s:22:\"dropdown_letterspacing\";s:1:\"4\";s:22:\"dropdown_texttransform\";s:0:\"\";s:19:\"dropdown_wide_color\";s:0:\"\";s:24:\"dropdown_wide_hovercolor\";s:0:\"\";s:26:\"dropdown_wide_google_fonts\";s:2:\"-1\";s:22:\"dropdown_wide_fontsize\";s:0:\"\";s:24:\"dropdown_wide_lineheight\";s:0:\"\";s:23:\"dropdown_wide_fontstyle\";s:0:\"\";s:24:\"dropdown_wide_fontweight\";s:0:\"\";s:27:\"dropdown_wide_letterspacing\";s:0:\"\";s:27:\"dropdown_wide_texttransform\";s:0:\"\";s:23:\"dropdown_color_thirdlvl\";s:0:\"\";s:28:\"dropdown_hovercolor_thirdlvl\";s:0:\"\";s:30:\"dropdown_google_fonts_thirdlvl\";s:2:\"-1\";s:26:\"dropdown_fontsize_thirdlvl\";s:0:\"\";s:28:\"dropdown_lineheight_thirdlvl\";s:0:\"\";s:27:\"dropdown_fontstyle_thirdlvl\";s:0:\"\";s:28:\"dropdown_fontweight_thirdlvl\";s:0:\"\";s:31:\"dropdown_letterspacing_thirdlvl\";s:0:\"\";s:31:\"dropdown_texttransform_thirdlvl\";s:0:\"\";s:11:\"fixed_color\";s:0:\"\";s:16:\"fixed_hovercolor\";s:0:\"\";s:18:\"fixed_google_fonts\";s:2:\"-1\";s:14:\"fixed_fontsize\";s:0:\"\";s:16:\"fixed_lineheight\";s:0:\"\";s:15:\"fixed_fontstyle\";s:0:\"\";s:16:\"fixed_fontweight\";s:0:\"\";s:19:\"fixed_letterspacing\";s:0:\"\";s:19:\"fixed_texttransform\";s:0:\"\";s:12:\"sticky_color\";s:7:\"#ffffff\";s:17:\"sticky_hovercolor\";s:7:\"#ffffff\";s:19:\"sticky_google_fonts\";s:9:\"Open+Sans\";s:15:\"sticky_fontsize\";s:2:\"13\";s:17:\"sticky_lineheight\";s:0:\"\";s:16:\"sticky_fontstyle\";s:6:\"normal\";s:17:\"sticky_fontweight\";s:3:\"600\";s:20:\"sticky_letterspacing\";s:1:\"4\";s:20:\"sticky_texttransform\";s:9:\"uppercase\";s:12:\"mobile_color\";s:7:\"#ffffff\";s:17:\"mobile_hovercolor\";s:7:\"#ffffff\";s:19:\"mobile_google_fonts\";s:9:\"Open+Sans\";s:15:\"mobile_fontsize\";s:2:\"12\";s:17:\"mobile_lineheight\";s:0:\"\";s:16:\"mobile_fontstyle\";s:6:\"normal\";s:17:\"mobile_fontweight\";s:0:\"\";s:21:\"mobile_letter_spacing\";s:1:\"4\";s:20:\"mobile_texttransform\";s:9:\"uppercase\";s:21:\"top_header_text_color\";s:0:\"\";s:27:\"top_header_text_hover_color\";s:0:\"\";s:27:\"top_header_text_font_family\";s:2:\"-1\";s:25:\"top_header_text_font_size\";s:0:\"\";s:27:\"top_header_text_line_height\";s:0:\"\";s:26:\"top_header_text_font_style\";s:0:\"\";s:27:\"top_header_text_font_weight\";s:0:\"\";s:30:\"top_header_text_letter_spacing\";s:0:\"\";s:29:\"top_header_text_texttransform\";s:0:\"\";s:16:\"page_title_color\";s:7:\"#525252\";s:19:\"page_title_fontsize\";s:2:\"40\";s:21:\"page_title_lineheight\";s:2:\"50\";s:24:\"page_title_texttransform\";s:4:\"none\";s:23:\"page_title_google_fonts\";s:18:\"Cormorant+Garamond\";s:20:\"page_title_fontstyle\";s:6:\"normal\";s:21:\"page_title_fontweight\";s:3:\"400\";s:24:\"page_title_letterspacing\";s:3:\"8.8\";s:26:\"page_title_medium_fontsize\";s:0:\"\";s:28:\"page_title_medium_lineheight\";s:0:\"\";s:28:\"page_title_medium_fontweight\";s:0:\"\";s:31:\"page_title_medium_letterspacing\";s:0:\"\";s:31:\"page_title_medium_texttransform\";s:0:\"\";s:25:\"page_title_large_fontsize\";s:0:\"\";s:27:\"page_title_large_lineheight\";s:0:\"\";s:27:\"page_title_large_fontweight\";s:0:\"\";s:30:\"page_title_large_letterspacing\";s:0:\"\";s:30:\"page_title_large_texttransform\";s:0:\"\";s:19:\"page_subtitle_color\";s:0:\"\";s:22:\"page_subtitle_fontsize\";s:0:\"\";s:24:\"page_subtitle_lineheight\";s:0:\"\";s:25:\"page_subtitle_font_family\";s:2:\"-1\";s:24:\"page_subtitle_font_style\";s:0:\"\";s:24:\"page_subtitle_fontweight\";s:0:\"\";s:28:\"page_subtitle_large_fontsize\";s:0:\"\";s:30:\"page_subtitle_large_lineheight\";s:0:\"\";s:30:\"page_subtitle_large_fontweight\";s:0:\"\";s:27:\"page_text_above_title_color\";s:0:\"\";s:30:\"page_text_above_title_fontsize\";s:0:\"\";s:32:\"page_text_above_title_lineheight\";s:0:\"\";s:35:\"page_text_above_title_letterspacing\";s:0:\"\";s:33:\"page_text_above_title_font_family\";s:2:\"-1\";s:32:\"page_text_above_title_font_style\";s:0:\"\";s:32:\"page_text_above_title_fontweight\";s:0:\"\";s:35:\"page_text_above_title_texttransform\";s:0:\"\";s:36:\"page_text_above_title_large_fontsize\";s:0:\"\";s:38:\"page_text_above_title_large_lineheight\";s:0:\"\";s:38:\"page_text_above_title_large_fontweight\";s:0:\"\";s:18:\"footer_title_color\";s:0:\"\";s:22:\"footer_title_font_size\";s:0:\"\";s:27:\"footer_title_letter_spacing\";s:0:\"\";s:24:\"footer_title_line_height\";s:0:\"\";s:24:\"footer_title_font_family\";s:9:\"Open+Sans\";s:23:\"footer_title_font_style\";s:6:\"normal\";s:24:\"footer_title_font_weight\";s:3:\"300\";s:27:\"footer_title_text_transform\";s:0:\"\";s:21:\"footer_text_font_size\";s:2:\"17\";s:26:\"footer_text_letter_spacing\";s:1:\"0\";s:23:\"footer_text_line_height\";s:2:\"27\";s:23:\"footer_text_font_family\";s:2:\"-1\";s:22:\"footer_text_font_style\";s:0:\"\";s:23:\"footer_text_font_weight\";s:3:\"300\";s:26:\"footer_text_text_transform\";s:0:\"\";s:21:\"footer_link_font_size\";s:0:\"\";s:26:\"footer_link_letter_spacing\";s:0:\"\";s:23:\"footer_link_line_height\";s:0:\"\";s:23:\"footer_link_font_family\";s:2:\"-1\";s:22:\"footer_link_font_style\";s:0:\"\";s:23:\"footer_link_font_weight\";s:0:\"\";s:26:\"footer_link_text_transform\";s:0:\"\";s:28:\"footer_bottom_text_font_size\";s:2:\"16\";s:33:\"footer_bottom_text_letter_spacing\";s:3:\"0.2\";s:30:\"footer_bottom_text_line_height\";s:2:\"31\";s:30:\"footer_bottom_text_font_family\";s:18:\"Cormorant+Garamond\";s:29:\"footer_bottom_text_font_style\";s:6:\"normal\";s:30:\"footer_bottom_text_font_weight\";s:3:\"400\";s:33:\"footer_bottom_text_text_transform\";s:10:\"capitalize\";s:28:\"footer_bottom_link_font_size\";s:0:\"\";s:33:\"footer_bottom_link_letter_spacing\";s:0:\"\";s:30:\"footer_bottom_link_line_height\";s:0:\"\";s:30:\"footer_bottom_link_font_family\";s:2:\"-1\";s:29:\"footer_bottom_link_font_style\";s:0:\"\";s:30:\"footer_bottom_link_font_weight\";s:0:\"\";s:33:\"footer_bottom_link_text_transform\";s:0:\"\";s:22:\"portfolio_filter_color\";s:0:\"\";s:28:\"portfolio_filter_hover_color\";s:0:\"\";s:26:\"portfolio_filter_font_size\";s:0:\"\";s:28:\"portfolio_filter_line_height\";s:0:\"\";s:31:\"portfolio_filter_text_transform\";s:0:\"\";s:28:\"portfolio_filter_font_family\";s:2:\"-1\";s:27:\"portfolio_filter_font_style\";s:0:\"\";s:28:\"portfolio_filter_font_weight\";s:0:\"\";s:31:\"portfolio_filter_letter_spacing\";s:0:\"\";s:15:\"separator_color\";s:0:\"\";s:28:\"separator_color_transparency\";s:0:\"\";s:19:\"separator_thickness\";s:0:\"\";s:19:\"separator_topmargin\";s:0:\"\";s:22:\"separator_bottommargin\";s:0:\"\";s:21:\"separator_small_color\";s:0:\"\";s:34:\"separator_small_color_transparency\";s:0:\"\";s:25:\"separator_small_thickness\";s:0:\"\";s:21:\"separator_small_width\";s:0:\"\";s:25:\"separator_small_topmargin\";s:0:\"\";s:28:\"separator_small_bottommargin\";s:0:\"\";s:25:\"separator_with_icon_color\";s:0:\"\";s:32:\"separator_with_icon_transparency\";s:0:\"\";s:29:\"separator_with_icon_thickness\";s:0:\"\";s:25:\"separator_with_icon_width\";s:0:\"\";s:29:\"separator_with_icon_topmargin\";s:0:\"\";s:32:\"separator_with_icon_bottommargin\";s:0:\"\";s:18:\"button_title_color\";s:7:\"#ffffff\";s:23:\"button_title_hovercolor\";s:7:\"#ffffff\";s:25:\"button_title_google_fonts\";s:4:\"Lato\";s:21:\"button_title_fontsize\";s:2:\"11\";s:23:\"button_title_lineheight\";s:2:\"55\";s:22:\"button_title_fontstyle\";s:0:\"\";s:23:\"button_title_fontweight\";s:3:\"700\";s:27:\"button_title_letter_spacing\";s:3:\"1.5\";s:27:\"button_title_text_transform\";s:9:\"uppercase\";s:22:\"button_backgroundcolor\";s:7:\"#16293a\";s:28:\"button_backgroundcolor_hover\";s:7:\"#16293a\";s:19:\"button_border_color\";s:7:\"#16293a\";s:25:\"button_border_hover_color\";s:7:\"#16293a\";s:19:\"button_border_width\";s:1:\"1\";s:20:\"button_border_radius\";s:1:\"0\";s:24:\"button_padding_leftright\";s:2:\"50\";s:23:\"button_white_text_color\";s:0:\"\";s:29:\"button_white_text_color_hover\";s:0:\"\";s:29:\"button_white_background_color\";s:0:\"\";s:35:\"button_white_background_color_hover\";s:0:\"\";s:25:\"button_white_border_color\";s:0:\"\";s:31:\"button_white_border_color_hover\";s:0:\"\";s:23:\"button_green_text_color\";s:0:\"\";s:29:\"button_green_text_color_hover\";s:0:\"\";s:29:\"button_green_background_color\";s:0:\"\";s:35:\"button_green_background_color_hover\";s:0:\"\";s:25:\"button_green_border_color\";s:0:\"\";s:31:\"button_green_border_color_hover\";s:0:\"\";s:23:\"small_button_lineheight\";s:0:\"\";s:21:\"small_button_fontsize\";s:0:\"\";s:23:\"small_button_fontweight\";s:0:\"\";s:20:\"small_button_padding\";s:0:\"\";s:26:\"small_button_border_radius\";s:0:\"\";s:23:\"large_button_lineheight\";s:0:\"\";s:21:\"large_button_fontsize\";s:0:\"\";s:23:\"large_button_fontweight\";s:0:\"\";s:20:\"large_button_padding\";s:0:\"\";s:26:\"large_button_border_radius\";s:0:\"\";s:27:\"big_large_button_lineheight\";s:0:\"\";s:25:\"big_large_button_fontsize\";s:0:\"\";s:27:\"big_large_button_fontweight\";s:0:\"\";s:24:\"big_large_button_padding\";s:0:\"\";s:30:\"big_large_button_border_radius\";s:0:\"\";s:19:\"message_title_color\";s:0:\"\";s:23:\"message_backgroundcolor\";s:0:\"\";s:26:\"message_title_google_fonts\";s:2:\"-1\";s:22:\"message_title_fontsize\";s:0:\"\";s:24:\"message_title_lineheight\";s:0:\"\";s:23:\"message_title_fontstyle\";s:0:\"\";s:24:\"message_title_fontweight\";s:0:\"\";s:18:\"message_icon_color\";s:0:\"\";s:21:\"message_icon_fontsize\";s:0:\"\";s:30:\"quote_link_blockqoute_fontsize\";s:0:\"\";s:32:\"quote_link_blockqoute_lineheight\";s:0:\"\";s:35:\"quote_link_blockqoute_letterspacing\";s:0:\"\";s:35:\"quote_link_blockqoute_texttransform\";s:0:\"\";s:32:\"quote_link_blockqoute_fontfamily\";s:2:\"-1\";s:31:\"quote_link_blockqoute_fontstyle\";s:0:\"\";s:32:\"quote_link_blockqoute_fontweight\";s:0:\"\";s:21:\"blockquote_font_color\";s:0:\"\";s:27:\"blockquote_background_color\";s:0:\"\";s:23:\"blockquote_border_color\";s:0:\"\";s:27:\"blockquote_quote_icon_color\";s:0:\"\";s:17:\"social_icon_color\";s:0:\"\";s:28:\"social_icon_background_color\";s:0:\"\";s:24:\"social_icon_border_color\";s:0:\"\";s:38:\"testimonaials_navigation_border_radius\";s:0:\"\";s:23:\"testimonials_text_color\";s:7:\"#ffffff\";s:23:\"testimonaials_font_size\";s:2:\"18\";s:29:\"testimonials_text_line_height\";s:2:\"32\";s:32:\"testimonials_text_text_transform\";s:4:\"none\";s:29:\"testimonials_text_font_family\";s:4:\"Lato\";s:28:\"testimonials_text_font_style\";s:6:\"italic\";s:29:\"testimonials_text_font_weight\";s:3:\"300\";s:32:\"testimonials_text_letter_spacing\";s:3:\"0.5\";s:25:\"testimonials_author_color\";s:7:\"#d79d59\";s:29:\"testimonials_author_font_size\";s:2:\"11\";s:31:\"testimonials_author_line_height\";s:2:\"30\";s:34:\"testimonials_author_text_transform\";s:9:\"uppercase\";s:31:\"testimonials_author_font_family\";s:4:\"Lato\";s:30:\"testimonials_author_font_style\";s:6:\"normal\";s:31:\"testimonials_author_font_weight\";s:3:\"400\";s:34:\"testimonials_author_letter_spacing\";s:1:\"2\";s:13:\"counter_color\";s:0:\"\";s:18:\"counter_text_color\";s:0:\"\";s:23:\"counter_separator_color\";s:0:\"\";s:18:\"counters_font_size\";s:0:\"\";s:20:\"counters_font_family\";s:2:\"-1\";s:19:\"counters_fontweight\";s:0:\"\";s:23:\"counters_text_font_size\";s:0:\"\";s:25:\"counters_text_font_family\";s:2:\"-1\";s:24:\"counters_text_fontweight\";s:0:\"\";s:27:\"counters_text_texttransform\";s:0:\"\";s:27:\"counters_text_letterspacing\";s:0:\"\";s:24:\"counters_text_lineheight\";s:0:\"\";s:32:\"progress_bar_horizontal_fontsize\";s:0:\"\";s:34:\"progress_bar_horizontal_fontweight\";s:0:\"\";s:19:\"pie_charts_fontsize\";s:0:\"\";s:21:\"pie_charts_fontweight\";s:0:\"\";s:10:\"tabs_color\";s:0:\"\";s:16:\"tabs_hover_color\";s:0:\"\";s:17:\"tabs_active_color\";s:0:\"\";s:14:\"tabs_text_size\";s:0:\"\";s:16:\"tabs_line_height\";s:0:\"\";s:19:\"tabs_text_transform\";s:0:\"\";s:16:\"tabs_font_family\";s:2:\"-1\";s:15:\"tabs_font_style\";s:0:\"\";s:15:\"tabs_fontweight\";s:0:\"\";s:19:\"tabs_letter_spacing\";s:0:\"\";s:17:\"tabs_border_color\";s:0:\"\";s:18:\"tabs_border_radius\";s:0:\"\";s:17:\"tabs_border_width\";s:0:\"\";s:10:\"tags_color\";s:0:\"\";s:14:\"tags_font_size\";s:0:\"\";s:16:\"tags_line_height\";s:0:\"\";s:19:\"tags_text_transform\";s:0:\"\";s:16:\"tags_font_family\";s:2:\"-1\";s:15:\"tags_font_style\";s:0:\"\";s:16:\"tags_font_weight\";s:0:\"\";s:19:\"tags_letter_spacing\";s:0:\"\";s:16:\"tags_hover_color\";s:0:\"\";s:21:\"tags_background_color\";s:0:\"\";s:27:\"tags_background_hover_color\";s:0:\"\";s:18:\"tags_border_radius\";s:0:\"\";s:17:\"tags_border_color\";s:0:\"\";s:23:\"tags_border_hover_color\";s:0:\"\";s:17:\"tags_border_width\";s:0:\"\";s:17:\"tags_border_style\";s:0:\"\";s:23:\"tags_left_right_padding\";s:0:\"\";s:37:\"process_circle_hover_background_color\";s:0:\"\";s:34:\"process_text_in_circle_font_weight\";s:0:\"\";s:24:\"process_text_hover_color\";s:0:\"\";s:22:\"input_background_color\";s:0:\"\";s:18:\"input_border_color\";s:0:\"\";s:16:\"input_text_color\";s:0:\"\";s:15:\"highlight_color\";s:0:\"\";s:29:\"toggle_title_background_color\";s:0:\"\";s:35:\"toggle_title_hover_background_color\";s:0:\"\";s:34:\"toggle_title_text_background_color\";s:0:\"\";s:40:\"toggle_title_hover_text_background_color\";s:0:\"\";s:26:\"qode_back_to_top_icon_pack\";s:12:\"font_elegant\";s:31:\"qode_back_to_top_icon_pack_icon\";s:11:\"fa-arrow-up\";s:34:\"qode_back_to_top_icon_pack_fe_icon\";s:8:\"arrow_up\";s:37:\"qode_back_to_top_icon_pack_linea_icon\";s:0:\"\";s:35:\"qode_back_to_top_icon_pack_dripicon\";s:0:\"\";s:22:\"back_to_top_icon_color\";s:7:\"#ffffff\";s:28:\"back_to_top_icon_hover_color\";s:7:\"#ffffff\";s:28:\"back_to_top_background_color\";s:7:\"#404d56\";s:34:\"back_to_top_background_hover_color\";s:7:\"#939393\";s:35:\"back_to_top_background_transparency\";s:0:\"\";s:41:\"back_to_top_background_hover_transparency\";s:0:\"\";s:24:\"back_to_top_border_color\";s:0:\"\";s:30:\"back_to_top_border_hover_color\";s:0:\"\";s:24:\"back_to_top_border_width\";s:1:\"1\";s:25:\"back_to_top_border_radius\";s:0:\"\";s:31:\"back_to_top_border_transparency\";s:0:\"\";s:37:\"back_to_top_border_hover_transparency\";s:0:\"\";s:18:\"back_to_top_height\";s:0:\"\";s:17:\"back_to_top_width\";s:0:\"\";s:21:\"back_to_top_right_pos\";s:0:\"\";s:22:\"back_to_top_bottom_pos\";s:0:\"\";s:20:\"navigation_area_size\";s:0:\"\";s:23:\"navigation_button_width\";s:0:\"\";s:24:\"navigation_button_height\";s:0:\"\";s:26:\"navigation_button_position\";s:0:\"\";s:22:\"navigation_arrow_color\";s:0:\"\";s:29:\"navigation_arrow_transparency\";s:0:\"\";s:28:\"navigation_arrow_hover_color\";s:0:\"\";s:35:\"navigation_arrow_hover_transparency\";s:0:\"\";s:21:\"navigation_arrow_size\";s:0:\"\";s:27:\"navigation_background_color\";s:0:\"\";s:34:\"navigation_background_transparency\";s:0:\"\";s:33:\"navigation_background_hover_color\";s:0:\"\";s:40:\"navigation_background_hover_transparency\";s:0:\"\";s:23:\"navigation_border_color\";s:0:\"\";s:30:\"navigation_border_transparency\";s:0:\"\";s:29:\"navigation_border_hover_color\";s:0:\"\";s:36:\"navigation_border_hover_transparency\";s:0:\"\";s:23:\"navigation_border_width\";s:0:\"\";s:24:\"navigation_border_radius\";s:0:\"\";s:32:\"carousel_navigation_button_width\";s:0:\"\";s:33:\"carousel_navigation_button_height\";s:0:\"\";s:35:\"carousel_navigation_button_position\";s:0:\"\";s:31:\"carousel_navigation_arrow_color\";s:0:\"\";s:38:\"carousel_navigation_arrow_transparency\";s:0:\"\";s:37:\"carousel_navigation_arrow_hover_color\";s:0:\"\";s:44:\"carousel_navigation_arrow_hover_transparency\";s:0:\"\";s:30:\"carousel_navigation_arrow_size\";s:0:\"\";s:36:\"carousel_navigation_background_color\";s:0:\"\";s:43:\"carousel_navigation_background_transparency\";s:0:\"\";s:42:\"carousel_navigation_background_hover_color\";s:0:\"\";s:49:\"carousel_navigation_background_hover_transparency\";s:0:\"\";s:32:\"carousel_navigation_border_color\";s:0:\"\";s:39:\"carousel_navigation_border_transparency\";s:0:\"\";s:38:\"carousel_navigation_border_hover_color\";s:0:\"\";s:45:\"carousel_navigation_border_hover_transparency\";s:0:\"\";s:32:\"carousel_navigation_border_width\";s:0:\"\";s:33:\"carousel_navigation_border_radius\";s:0:\"\";s:37:\"single_slider_navigation_button_width\";s:0:\"\";s:38:\"single_slider_navigation_button_height\";s:0:\"\";s:40:\"single_slider_navigation_button_position\";s:0:\"\";s:36:\"single_slider_navigation_arrow_color\";s:0:\"\";s:43:\"single_slider_navigation_arrow_transparency\";s:0:\"\";s:42:\"single_slider_navigation_arrow_hover_color\";s:0:\"\";s:49:\"single_slider_navigation_arrow_hover_transparency\";s:0:\"\";s:35:\"single_slider_navigation_arrow_size\";s:0:\"\";s:41:\"single_slider_navigation_background_color\";s:0:\"\";s:48:\"single_slider_navigation_background_transparency\";s:0:\"\";s:47:\"single_slider_navigation_background_hover_color\";s:0:\"\";s:54:\"single_slider_navigation_background_hover_transparency\";s:0:\"\";s:37:\"single_slider_navigation_border_color\";s:0:\"\";s:44:\"single_slider_navigation_border_transparency\";s:0:\"\";s:43:\"single_slider_navigation_border_hover_color\";s:0:\"\";s:50:\"single_slider_navigation_border_hover_transparency\";s:0:\"\";s:37:\"single_slider_navigation_border_width\";s:0:\"\";s:38:\"single_slider_navigation_border_radius\";s:0:\"\";s:33:\"slider_circle_navigation_position\";s:0:\"\";s:23:\"button_navigation_color\";s:0:\"\";s:30:\"button_navigation_active_color\";s:7:\"#d79d59\";s:22:\"button_navigation_size\";s:2:\"11\";s:31:\"button_navigation_border_radius\";s:0:\"\";s:30:\"button_navigation_border_color\";s:0:\"\";s:37:\"button_navigation_active_border_color\";s:0:\"\";s:30:\"button_bullet_navigation_color\";s:7:\"#cfcfcf\";s:37:\"button_bullet_navigation_active_color\";s:7:\"#d79d59\";s:29:\"button_bullet_navigation_size\";s:2:\"11\";s:38:\"button_bullet_navigation_border_radius\";s:0:\"\";s:37:\"button_bullet_navigation_border_color\";s:0:\"\";s:44:\"button_bullet_navigation_active_border_color\";s:0:\"\";s:21:\"masonry_gallery_space\";s:0:\"\";s:38:\"masonry_gallery_square_big_title_color\";s:0:\"\";s:42:\"masonry_gallery_square_big_title_font_size\";s:0:\"\";s:44:\"masonry_gallery_square_big_title_line_height\";s:0:\"\";s:47:\"masonry_gallery_square_big_title_text_transform\";s:0:\"\";s:44:\"masonry_gallery_square_big_title_font_family\";s:2:\"-1\";s:43:\"masonry_gallery_square_big_title_font_style\";s:0:\"\";s:44:\"masonry_gallery_square_big_title_font_weight\";s:0:\"\";s:47:\"masonry_gallery_square_big_title_letter_spacing\";s:0:\"\";s:46:\"masonry_gallery_square_big_title_margin_bottom\";s:0:\"\";s:37:\"masonry_gallery_square_big_text_color\";s:0:\"\";s:41:\"masonry_gallery_square_big_text_font_size\";s:0:\"\";s:43:\"masonry_gallery_square_big_text_line_height\";s:0:\"\";s:46:\"masonry_gallery_square_big_text_text_transform\";s:0:\"\";s:43:\"masonry_gallery_square_big_text_font_family\";s:2:\"-1\";s:42:\"masonry_gallery_square_big_text_font_style\";s:0:\"\";s:43:\"masonry_gallery_square_big_text_font_weight\";s:0:\"\";s:46:\"masonry_gallery_square_big_text_letter_spacing\";s:0:\"\";s:45:\"masonry_gallery_square_big_button_font_family\";s:2:\"-1\";s:44:\"masonry_gallery_square_big_button_font_style\";s:0:\"\";s:45:\"masonry_gallery_square_big_button_font_weight\";s:0:\"\";s:48:\"masonry_gallery_square_big_button_text_transform\";s:0:\"\";s:43:\"masonry_gallery_square_big_button_font_size\";s:0:\"\";s:45:\"masonry_gallery_square_big_button_line_height\";s:0:\"\";s:48:\"masonry_gallery_square_big_button_letter_spacing\";s:0:\"\";s:44:\"masonry_gallery_square_big_button_text_color\";s:0:\"\";s:50:\"masonry_gallery_square_big_button_hover_text_color\";s:0:\"\";s:50:\"masonry_gallery_square_big_button_background_color\";s:0:\"\";s:56:\"masonry_gallery_square_big_button_hover_background_color\";s:0:\"\";s:46:\"masonry_gallery_square_big_button_border_color\";s:0:\"\";s:52:\"masonry_gallery_square_big_button_hover_border_color\";s:0:\"\";s:46:\"masonry_gallery_square_big_button_border_width\";s:0:\"\";s:47:\"masonry_gallery_square_big_button_border_radius\";s:0:\"\";s:46:\"masonry_gallery_square_big_button_padding_left\";s:0:\"\";s:47:\"masonry_gallery_square_big_button_padding_right\";s:0:\"\";s:44:\"masonry_gallery_square_big_button_margin_top\";s:0:\"\";s:37:\"masonry_gallery_square_big_icon_color\";s:0:\"\";s:43:\"masonry_gallery_square_big_icon_hover_color\";s:0:\"\";s:36:\"masonry_gallery_square_big_icon_size\";s:0:\"\";s:45:\"masonry_gallery_square_big_icon_margin_bottom\";s:0:\"\";s:40:\"masonry_gallery_square_big_overlay_color\";s:11:\"transparent\";s:47:\"masonry_gallery_square_big_overlay_transparency\";s:1:\"0\";s:37:\"masonry_gallery_square_big_text_align\";s:6:\"center\";s:39:\"masonry_gallery_square_big_padding_left\";s:0:\"\";s:40:\"masonry_gallery_square_big_padding_right\";s:0:\"\";s:40:\"masonry_gallery_square_small_title_color\";s:0:\"\";s:44:\"masonry_gallery_square_small_title_font_size\";s:0:\"\";s:46:\"masonry_gallery_square_small_title_line_height\";s:0:\"\";s:49:\"masonry_gallery_square_small_title_text_transform\";s:0:\"\";s:46:\"masonry_gallery_square_small_title_font_family\";s:2:\"-1\";s:45:\"masonry_gallery_square_small_title_font_style\";s:0:\"\";s:46:\"masonry_gallery_square_small_title_font_weight\";s:0:\"\";s:49:\"masonry_gallery_square_small_title_letter_spacing\";s:0:\"\";s:48:\"masonry_gallery_square_small_title_margin_bottom\";s:0:\"\";s:39:\"masonry_gallery_square_small_text_color\";s:0:\"\";s:43:\"masonry_gallery_square_small_text_font_size\";s:0:\"\";s:45:\"masonry_gallery_square_small_text_line_height\";s:0:\"\";s:48:\"masonry_gallery_square_small_text_text_transform\";s:0:\"\";s:45:\"masonry_gallery_square_small_text_font_family\";s:2:\"-1\";s:44:\"masonry_gallery_square_small_text_font_style\";s:0:\"\";s:45:\"masonry_gallery_square_small_text_font_weight\";s:0:\"\";s:48:\"masonry_gallery_square_small_text_letter_spacing\";s:0:\"\";s:47:\"masonry_gallery_square_small_button_font_family\";s:2:\"-1\";s:46:\"masonry_gallery_square_small_button_font_style\";s:0:\"\";s:47:\"masonry_gallery_square_small_button_font_weight\";s:0:\"\";s:50:\"masonry_gallery_square_small_button_text_transform\";s:0:\"\";s:45:\"masonry_gallery_square_small_button_font_size\";s:0:\"\";s:47:\"masonry_gallery_square_small_button_line_height\";s:0:\"\";s:50:\"masonry_gallery_square_small_button_letter_spacing\";s:0:\"\";s:46:\"masonry_gallery_square_small_button_text_color\";s:0:\"\";s:52:\"masonry_gallery_square_small_button_hover_text_color\";s:0:\"\";s:52:\"masonry_gallery_square_small_button_background_color\";s:0:\"\";s:58:\"masonry_gallery_square_small_button_hover_background_color\";s:0:\"\";s:48:\"masonry_gallery_square_small_button_border_color\";s:0:\"\";s:54:\"masonry_gallery_square_small_button_hover_border_color\";s:0:\"\";s:48:\"masonry_gallery_square_small_button_border_width\";s:0:\"\";s:49:\"masonry_gallery_square_small_button_border_radius\";s:0:\"\";s:48:\"masonry_gallery_square_small_button_padding_left\";s:0:\"\";s:49:\"masonry_gallery_square_small_button_padding_right\";s:0:\"\";s:46:\"masonry_gallery_square_small_button_margin_top\";s:0:\"\";s:39:\"masonry_gallery_square_small_icon_color\";s:0:\"\";s:45:\"masonry_gallery_square_small_icon_hover_color\";s:0:\"\";s:38:\"masonry_gallery_square_small_icon_size\";s:0:\"\";s:47:\"masonry_gallery_square_small_icon_margin_bottom\";s:0:\"\";s:42:\"masonry_gallery_square_small_overlay_color\";s:11:\"transparent\";s:49:\"masonry_gallery_square_small_overlay_transparency\";s:1:\"0\";s:39:\"masonry_gallery_square_small_text_align\";s:6:\"center\";s:41:\"masonry_gallery_square_small_padding_left\";s:0:\"\";s:42:\"masonry_gallery_square_small_padding_right\";s:0:\"\";s:46:\"masonry_gallery_rectangle_portrait_title_color\";s:0:\"\";s:50:\"masonry_gallery_rectangle_portrait_title_font_size\";s:0:\"\";s:52:\"masonry_gallery_rectangle_portrait_title_line_height\";s:0:\"\";s:55:\"masonry_gallery_rectangle_portrait_title_text_transform\";s:0:\"\";s:52:\"masonry_gallery_rectangle_portrait_title_font_family\";s:2:\"-1\";s:51:\"masonry_gallery_rectangle_portrait_title_font_style\";s:0:\"\";s:52:\"masonry_gallery_rectangle_portrait_title_font_weight\";s:0:\"\";s:55:\"masonry_gallery_rectangle_portrait_title_letter_spacing\";s:0:\"\";s:54:\"masonry_gallery_rectangle_portrait_title_margin_bottom\";s:0:\"\";s:45:\"masonry_gallery_rectangle_portrait_text_color\";s:0:\"\";s:49:\"masonry_gallery_rectangle_portrait_text_font_size\";s:0:\"\";s:51:\"masonry_gallery_rectangle_portrait_text_line_height\";s:0:\"\";s:54:\"masonry_gallery_rectangle_portrait_text_text_transform\";s:0:\"\";s:51:\"masonry_gallery_rectangle_portrait_text_font_family\";s:2:\"-1\";s:50:\"masonry_gallery_rectangle_portrait_text_font_style\";s:0:\"\";s:51:\"masonry_gallery_rectangle_portrait_text_font_weight\";s:0:\"\";s:54:\"masonry_gallery_rectangle_portrait_text_letter_spacing\";s:0:\"\";s:53:\"masonry_gallery_rectangle_portrait_button_font_family\";s:2:\"-1\";s:52:\"masonry_gallery_rectangle_portrait_button_font_style\";s:0:\"\";s:53:\"masonry_gallery_rectangle_portrait_button_font_weight\";s:0:\"\";s:56:\"masonry_gallery_rectangle_portrait_button_text_transform\";s:0:\"\";s:51:\"masonry_gallery_rectangle_portrait_button_font_size\";s:0:\"\";s:53:\"masonry_gallery_rectangle_portrait_button_line_height\";s:0:\"\";s:56:\"masonry_gallery_rectangle_portrait_button_letter_spacing\";s:0:\"\";s:52:\"masonry_gallery_rectangle_portrait_button_text_color\";s:0:\"\";s:58:\"masonry_gallery_rectangle_portrait_button_hover_text_color\";s:0:\"\";s:58:\"masonry_gallery_rectangle_portrait_button_background_color\";s:0:\"\";s:64:\"masonry_gallery_rectangle_portrait_button_hover_background_color\";s:0:\"\";s:54:\"masonry_gallery_rectangle_portrait_button_border_color\";s:0:\"\";s:60:\"masonry_gallery_rectangle_portrait_button_hover_border_color\";s:0:\"\";s:54:\"masonry_gallery_rectangle_portrait_button_border_width\";s:0:\"\";s:55:\"masonry_gallery_rectangle_portrait_button_border_radius\";s:0:\"\";s:54:\"masonry_gallery_rectangle_portrait_button_padding_left\";s:0:\"\";s:55:\"masonry_gallery_rectangle_portrait_button_padding_right\";s:0:\"\";s:52:\"masonry_gallery_rectangle_portrait_button_margin_top\";s:0:\"\";s:45:\"masonry_gallery_rectangle_portrait_icon_color\";s:0:\"\";s:51:\"masonry_gallery_rectangle_portrait_icon_hover_color\";s:0:\"\";s:44:\"masonry_gallery_rectangle_portrait_icon_size\";s:0:\"\";s:53:\"masonry_gallery_rectangle_portrait_icon_margin_bottom\";s:0:\"\";s:48:\"masonry_gallery_rectangle_portrait_overlay_color\";s:11:\"transparent\";s:55:\"masonry_gallery_rectangle_portrait_overlay_transparency\";s:1:\"0\";s:45:\"masonry_gallery_rectangle_portrait_text_align\";s:6:\"center\";s:47:\"masonry_gallery_rectangle_portrait_padding_left\";s:0:\"\";s:48:\"masonry_gallery_rectangle_portrait_padding_right\";s:0:\"\";s:47:\"masonry_gallery_rectangle_landscape_title_color\";s:0:\"\";s:51:\"masonry_gallery_rectangle_landscape_title_font_size\";s:0:\"\";s:53:\"masonry_gallery_rectangle_landscape_title_line_height\";s:0:\"\";s:56:\"masonry_gallery_rectangle_landscape_title_text_transform\";s:0:\"\";s:53:\"masonry_gallery_rectangle_landscape_title_font_family\";s:2:\"-1\";s:52:\"masonry_gallery_rectangle_landscape_title_font_style\";s:0:\"\";s:53:\"masonry_gallery_rectangle_landscape_title_font_weight\";s:0:\"\";s:56:\"masonry_gallery_rectangle_landscape_title_letter_spacing\";s:0:\"\";s:55:\"masonry_gallery_rectangle_landscape_title_margin_bottom\";s:0:\"\";s:46:\"masonry_gallery_rectangle_landscape_text_color\";s:0:\"\";s:50:\"masonry_gallery_rectangle_landscape_text_font_size\";s:0:\"\";s:52:\"masonry_gallery_rectangle_landscape_text_line_height\";s:0:\"\";s:55:\"masonry_gallery_rectangle_landscape_text_text_transform\";s:0:\"\";s:52:\"masonry_gallery_rectangle_landscape_text_font_family\";s:2:\"-1\";s:51:\"masonry_gallery_rectangle_landscape_text_font_style\";s:0:\"\";s:52:\"masonry_gallery_rectangle_landscape_text_font_weight\";s:0:\"\";s:55:\"masonry_gallery_rectangle_landscape_text_letter_spacing\";s:0:\"\";s:54:\"masonry_gallery_rectangle_landscape_button_font_family\";s:2:\"-1\";s:53:\"masonry_gallery_rectangle_landscape_button_font_style\";s:0:\"\";s:54:\"masonry_gallery_rectangle_landscape_button_font_weight\";s:0:\"\";s:57:\"masonry_gallery_rectangle_landscape_button_text_transform\";s:0:\"\";s:52:\"masonry_gallery_rectangle_landscape_button_font_size\";s:0:\"\";s:54:\"masonry_gallery_rectangle_landscape_button_line_height\";s:0:\"\";s:57:\"masonry_gallery_rectangle_landscape_button_letter_spacing\";s:0:\"\";s:53:\"masonry_gallery_rectangle_landscape_button_text_color\";s:0:\"\";s:59:\"masonry_gallery_rectangle_landscape_button_hover_text_color\";s:0:\"\";s:59:\"masonry_gallery_rectangle_landscape_button_background_color\";s:0:\"\";s:65:\"masonry_gallery_rectangle_landscape_button_hover_background_color\";s:0:\"\";s:55:\"masonry_gallery_rectangle_landscape_button_border_color\";s:0:\"\";s:61:\"masonry_gallery_rectangle_landscape_button_hover_border_color\";s:0:\"\";s:55:\"masonry_gallery_rectangle_landscape_button_border_width\";s:0:\"\";s:56:\"masonry_gallery_rectangle_landscape_button_border_radius\";s:0:\"\";s:55:\"masonry_gallery_rectangle_landscape_button_padding_left\";s:0:\"\";s:56:\"masonry_gallery_rectangle_landscape_button_padding_right\";s:0:\"\";s:53:\"masonry_gallery_rectangle_landscape_button_margin_top\";s:0:\"\";s:46:\"masonry_gallery_rectangle_landscape_icon_color\";s:0:\"\";s:52:\"masonry_gallery_rectangle_landscape_icon_hover_color\";s:0:\"\";s:45:\"masonry_gallery_rectangle_landscape_icon_size\";s:0:\"\";s:54:\"masonry_gallery_rectangle_landscape_icon_margin_bottom\";s:0:\"\";s:49:\"masonry_gallery_rectangle_landscape_overlay_color\";s:11:\"transparent\";s:56:\"masonry_gallery_rectangle_landscape_overlay_transparency\";s:1:\"0\";s:46:\"masonry_gallery_rectangle_landscape_text_align\";s:6:\"center\";s:48:\"masonry_gallery_rectangle_landscape_padding_left\";s:0:\"\";s:49:\"masonry_gallery_rectangle_landscape_padding_right\";s:0:\"\";s:27:\"fss_navigation_button_width\";s:0:\"\";s:28:\"fss_navigation_button_height\";s:0:\"\";s:30:\"fss_navigation_button_position\";s:0:\"\";s:33:\"fss_navigation_button_up_position\";s:0:\"\";s:35:\"fss_navigation_button_down_position\";s:0:\"\";s:26:\"fss_navigation_arrow_color\";s:0:\"\";s:33:\"fss_navigation_arrow_transparency\";s:0:\"\";s:32:\"fss_navigation_arrow_hover_color\";s:0:\"\";s:39:\"fss_navigation_arrow_hover_transparency\";s:0:\"\";s:25:\"fss_navigation_arrow_size\";s:0:\"\";s:31:\"fss_navigation_background_color\";s:0:\"\";s:38:\"fss_navigation_background_transparency\";s:0:\"\";s:37:\"fss_navigation_background_hover_color\";s:0:\"\";s:44:\"fss_navigation_background_hover_transparency\";s:0:\"\";s:27:\"fss_navigation_border_color\";s:0:\"\";s:34:\"fss_navigation_border_transparency\";s:0:\"\";s:33:\"fss_navigation_border_hover_color\";s:0:\"\";s:40:\"fss_navigation_border_hover_transparency\";s:0:\"\";s:27:\"fss_navigation_border_width\";s:0:\"\";s:28:\"fss_navigation_border_radius\";s:0:\"\";s:19:\"button_v2_font_size\";s:0:\"\";s:21:\"button_v2_line_height\";s:0:\"\";s:24:\"button_v2_letter_spacing\";s:0:\"\";s:21:\"button_v2_font_family\";s:2:\"-1\";s:24:\"button_v2_text_transform\";s:4:\"none\";s:20:\"button_v2_font_style\";s:6:\"normal\";s:21:\"button_v2_font_weight\";s:0:\"\";s:23:\"button_v2_border_radius\";s:0:\"\";s:17:\"button_v2_padding\";s:0:\"\";s:23:\"btn_v2_solid_text_color\";s:0:\"\";s:29:\"btn_v2_solid_hover_text_color\";s:0:\"\";s:21:\"btn_v2_solid_bg_color\";s:0:\"\";s:27:\"btn_v2_solid_hover_bg_color\";s:0:\"\";s:30:\"btn_v2_solid_icon_border_color\";s:0:\"\";s:36:\"btn_v2_solid_icon_border_hover_color\";s:0:\"\";s:26:\"btn_v2_solid_icon_bg_color\";s:0:\"\";s:32:\"btn_v2_solid_icon_bg_hover_color\";s:0:\"\";s:21:\"breadcrumbs_font_size\";s:0:\"\";s:23:\"breadcrumbs_line_height\";s:0:\"\";s:21:\"breadcrumbs_transform\";s:0:\"\";s:23:\"breadcrumbs_font_family\";s:2:\"-1\";s:22:\"breadcrumbs_font_style\";s:0:\"\";s:23:\"breadcrumbs_font_weight\";s:0:\"\";s:26:\"breadcrumbs_letter_spacing\";s:0:\"\";s:26:\"breadcrumbs_delimiter_sign\";s:0:\"\";s:22:\"accordions_font_family\";s:2:\"-1\";s:25:\"accordions_text_transform\";s:4:\"none\";s:21:\"accordions_font_style\";s:6:\"normal\";s:25:\"accordions_letter_spacing\";s:0:\"\";s:22:\"accordions_font_weight\";s:0:\"\";s:22:\"accordions_title_color\";s:0:\"\";s:21:\"accordions_back_color\";s:0:\"\";s:29:\"accordions_title_color_active\";s:0:\"\";s:28:\"accordions_back_color_active\";s:0:\"\";s:35:\"advanced_pricing_table_border_color\";s:0:\"\";s:37:\"advanced_pricing_table_odd_bckg_color\";s:0:\"\";s:38:\"advanced_pricing_table_even_bckg_color\";s:0:\"\";s:19:\"advanced_tabs_color\";s:0:\"\";s:24:\"advanced_tabs_bckg_color\";s:0:\"\";s:25:\"advanced_tabs_hover_color\";s:0:\"\";s:30:\"advanced_tabs_hover_bckg_color\";s:0:\"\";s:39:\"comparative_features_table_border_color\";s:0:\"\";s:41:\"comparative_features_table_odd_bckg_color\";s:0:\"\";s:42:\"comparative_features_table_even_bckg_color\";s:0:\"\";s:42:\"comparative_features_table_btn_font_family\";s:2:\"-1\";s:40:\"comparative_features_table_btn_font_size\";s:0:\"\";s:42:\"comparative_features_table_btn_font_weight\";s:0:\"\";s:41:\"comparative_features_table_btn_font_style\";s:0:\"\";s:45:\"comparative_features_table_btn_text_transform\";s:0:\"\";s:45:\"comparative_features_table_btn_letter_spacing\";s:0:\"\";s:36:\"comparative_features_table_btn_color\";s:0:\"\";s:42:\"comparative_features_table_btn_hover_color\";s:0:\"\";s:29:\"numbered_process_border_color\";s:0:\"\";s:29:\"numbered_process_border_width\";s:0:\"\";s:29:\"numbered_process_number_color\";s:0:\"\";s:33:\"numbered_process_number_font_size\";s:0:\"\";s:40:\"numbered_process_number_background_color\";s:0:\"\";s:34:\"numbered_process_item_border_color\";s:0:\"\";s:34:\"numbered_process_item_border_width\";s:0:\"\";s:31:\"pricing_calculator_border_color\";s:0:\"\";s:42:\"pricing_calculator_left_section_bckg_color\";s:0:\"\";s:43:\"pricing_calculator_right_section_bckg_color\";s:0:\"\";s:31:\"pricing_calculator_switch_color\";s:0:\"\";s:38:\"pricing_calculator_switch_active_color\";s:0:\"\";s:36:\"pricing_calculator_price_font_family\";s:2:\"-1\";s:34:\"pricing_calculator_price_font_size\";s:0:\"\";s:36:\"pricing_calculator_price_font_weight\";s:0:\"\";s:35:\"pricing_calculator_price_font_style\";s:0:\"\";s:39:\"pricing_calculator_price_letter_spacing\";s:0:\"\";s:30:\"pricing_calculator_price_color\";s:0:\"\";s:25:\"report_sheet_border_color\";s:0:\"\";s:20:\"rs_header_bckg_color\";s:0:\"\";s:17:\"rs_odd_bckg_color\";s:0:\"\";s:18:\"rs_even_bckg_color\";s:0:\"\";s:18:\"rs_btn_font_family\";s:2:\"-1\";s:26:\"report_sheet_btn_font_size\";s:0:\"\";s:18:\"rs_btn_font_weight\";s:0:\"\";s:17:\"rs_btn_font_style\";s:0:\"\";s:21:\"rs_btn_text_transform\";s:0:\"\";s:27:\"rs_table_btn_letter_spacing\";s:0:\"\";s:12:\"rs_btn_color\";s:0:\"\";s:18:\"rs_btn_hover_color\";s:0:\"\";s:34:\"testimonial_carousel_border_radius\";s:0:\"\";s:37:\"testimonial_carousel_background_color\";s:0:\"\";s:13:\"tc_text_color\";s:7:\"#404d56\";s:17:\"tc_text_font_size\";s:2:\"18\";s:19:\"tc_text_line_height\";s:2:\"32\";s:17:\"tc_text_transform\";s:4:\"none\";s:19:\"tc_text_font_family\";s:4:\"Lato\";s:18:\"tc_text_font_style\";s:6:\"italic\";s:19:\"tc_text_font_weight\";s:3:\"300\";s:22:\"tc_text_letter_spacing\";s:3:\"0.5\";s:15:\"tc_author_color\";s:7:\"#d79d59\";s:19:\"tc_author_font_size\";s:2:\"11\";s:21:\"tc_author_line_height\";s:2:\"30\";s:19:\"tc_author_transform\";s:9:\"uppercase\";s:21:\"tc_author_font_family\";s:4:\"Lato\";s:20:\"tc_author_font_style\";s:6:\"normal\";s:21:\"tc_author_font_weight\";s:3:\"400\";s:24:\"tc_author_letter_spacing\";s:1:\"2\";s:22:\"video_box_circle_color\";s:0:\"\";s:28:\"video_box_circle_hover_color\";s:7:\"#ffffff\";s:20:\"video_box_icon_color\";s:0:\"\";s:26:\"video_box_icon_hover_color\";s:7:\"#dfa057\";s:19:\"sidebar_title_color\";s:0:\"\";s:22:\"sidebar_title_fontsize\";s:0:\"\";s:24:\"sidebar_title_lineheight\";s:0:\"\";s:27:\"sidebar_title_texttransform\";s:0:\"\";s:26:\"sidebar_title_google_fonts\";s:2:\"-1\";s:23:\"sidebar_title_fontstyle\";s:0:\"\";s:24:\"sidebar_title_fontweight\";s:0:\"\";s:27:\"sidebar_title_letterspacing\";s:0:\"\";s:18:\"sidebar_text_color\";s:0:\"\";s:21:\"sidebar_text_fontsize\";s:0:\"\";s:23:\"sidebar_text_lineheight\";s:0:\"\";s:26:\"sidebar_text_texttransform\";s:0:\"\";s:25:\"sidebar_text_google_fonts\";s:2:\"-1\";s:22:\"sidebar_text_fontstyle\";s:0:\"\";s:23:\"sidebar_text_fontweight\";s:0:\"\";s:26:\"sidebar_text_letterspacing\";s:0:\"\";s:18:\"sidebar_link_color\";s:0:\"\";s:24:\"sidebar_link_hover_color\";s:0:\"\";s:21:\"sidebar_link_fontsize\";s:0:\"\";s:23:\"sidebar_link_lineheight\";s:0:\"\";s:26:\"sidebar_link_texttransform\";s:0:\"\";s:25:\"sidebar_link_google_fonts\";s:2:\"-1\";s:22:\"sidebar_link_fontstyle\";s:0:\"\";s:23:\"sidebar_link_fontweight\";s:0:\"\";s:26:\"sidebar_link_letterspacing\";s:0:\"\";s:23:\"qs_slider_height_tablet\";s:0:\"\";s:23:\"qs_slider_height_mobile\";s:0:\"\";s:15:\"qs_button_color\";s:7:\"#ffffff\";s:21:\"qs_button_hover_color\";s:7:\"#ffffff\";s:26:\"qs_button_background_color\";s:11:\"transparent\";s:32:\"qs_button_hover_background_color\";s:0:\"\";s:22:\"qs_button_border_color\";s:7:\"#ffffff\";s:28:\"qs_button_hover_border_color\";s:7:\"#ffffff\";s:22:\"qs_button_border_width\";s:1:\"2\";s:23:\"qs_button_border_radius\";s:1:\"0\";s:16:\"qs_button2_color\";s:0:\"\";s:22:\"qs_button2_hover_color\";s:0:\"\";s:27:\"qs_button2_background_color\";s:0:\"\";s:33:\"qs_button2_hover_background_color\";s:0:\"\";s:23:\"qs_button2_border_color\";s:0:\"\";s:29:\"qs_button2_hover_border_color\";s:0:\"\";s:23:\"qs_button2_border_width\";s:0:\"\";s:24:\"qs_button2_border_radius\";s:0:\"\";s:18:\"qs_v2_button_color\";s:0:\"\";s:24:\"qs_v2_button_hover_color\";s:0:\"\";s:29:\"qs_v2_button_background_color\";s:0:\"\";s:35:\"qs_v2_button_hover_background_color\";s:0:\"\";s:35:\"qs_v2_button_icon_left_border_color\";s:0:\"\";s:41:\"qs_v2_button_hover_icon_left_border_color\";s:0:\"\";s:34:\"qs_v2_button_icon_background_color\";s:0:\"\";s:40:\"qs_v2_button_hover_icon_background_color\";s:0:\"\";s:19:\"qs_v2_button2_color\";s:0:\"\";s:25:\"qs_v2_button2_hover_color\";s:0:\"\";s:30:\"qs_v2_button2_background_color\";s:0:\"\";s:36:\"qs_v2_button2_hover_background_color\";s:0:\"\";s:36:\"qs_v2_button2_icon_left_border_color\";s:0:\"\";s:42:\"qs_v2_button2_hover_icon_left_border_color\";s:0:\"\";s:35:\"qs_v2_button2_icon_background_color\";s:0:\"\";s:41:\"qs_v2_button2_hover_icon_background_color\";s:0:\"\";s:34:\"qs_enable_navigation_custom_cursor\";s:2:\"no\";s:33:\"cursor_image_left_right_area_size\";s:0:\"\";s:24:\"cursor_image_left_normal\";s:0:\"\";s:25:\"cursor_image_right_normal\";s:0:\"\";s:23:\"cursor_image_left_light\";s:0:\"\";s:24:\"cursor_image_right_light\";s:0:\"\";s:22:\"cursor_image_left_dark\";s:0:\"\";s:23:\"cursor_image_right_dark\";s:0:\"\";s:39:\"qs_enable_navigation_custom_cursor_grab\";s:2:\"no\";s:24:\"cursor_image_grab_normal\";s:0:\"\";s:23:\"cursor_image_grab_light\";s:0:\"\";s:22:\"cursor_image_grab_dark\";s:0:\"\";s:21:\"inter_page_navigation\";s:2:\"no\";s:29:\"inter_page_navigation_in_grid\";s:2:\"no\";s:38:\"inter_page_navigation_background_color\";s:0:\"\";s:25:\"inter_page_icons_gradient\";s:2:\"no\";s:20:\"inter_page_back_link\";s:7:\"no-link\";s:19:\"inter_page_order_by\";s:10:\"post_title\";s:10:\"pagination\";s:1:\"1\";s:10:\"blog_style\";s:1:\"8\";s:21:\"category_blog_sidebar\";s:7:\"default\";s:18:\"blog_hide_comments\";s:2:\"no\";s:16:\"blog_hide_author\";s:2:\"no\";s:9:\"qode_like\";s:2:\"on\";s:15:\"blog_page_range\";s:0:\"\";s:15:\"number_of_chars\";s:2:\"45\";s:23:\"number_of_chars_masonry\";s:0:\"\";s:27:\"number_of_chars_large_image\";s:0:\"\";s:27:\"number_of_chars_small_image\";s:0:\"\";s:21:\"blog_content_position\";s:23:\"content_above_blog_list\";s:18:\"pagination_masonry\";s:10:\"pagination\";s:19:\"blog_masonry_filter\";s:2:\"no\";s:20:\"blog_masonry_padding\";s:0:\"\";s:28:\"blog_large_image_text_in_box\";s:7:\"Default\";s:23:\"blog_large_image_border\";s:7:\"Default\";s:29:\"blog_large_image_border_width\";s:0:\"\";s:33:\"blog_large_image_background_color\";s:0:\"\";s:29:\"blog_large_image_border_color\";s:0:\"\";s:28:\"blog_large_image_title_color\";s:0:\"\";s:34:\"blog_large_image_title_hover_color\";s:0:\"\";s:33:\"blog_large_image_title_date_color\";s:0:\"\";s:31:\"blog_large_image_title_fontsize\";s:0:\"\";s:33:\"blog_large_image_title_lineheight\";s:0:\"\";s:36:\"blog_large_image_title_texttransform\";s:0:\"\";s:35:\"blog_large_image_title_google_fonts\";s:2:\"-1\";s:32:\"blog_large_image_title_fontstyle\";s:0:\"\";s:33:\"blog_large_image_title_fontweight\";s:0:\"\";s:36:\"blog_large_image_title_letterspacing\";s:0:\"\";s:32:\"blog_large_image_post_info_color\";s:0:\"\";s:37:\"blog_large_image_post_info_link_color\";s:0:\"\";s:43:\"blog_large_image_post_info_link_hover_color\";s:0:\"\";s:35:\"blog_large_image_post_info_fontsize\";s:0:\"\";s:37:\"blog_large_image_post_info_lineheight\";s:0:\"\";s:40:\"blog_large_image_post_info_texttransform\";s:0:\"\";s:39:\"blog_large_image_post_info_google_fonts\";s:2:\"-1\";s:36:\"blog_large_image_post_info_fontstyle\";s:0:\"\";s:37:\"blog_large_image_post_info_fontweight\";s:0:\"\";s:40:\"blog_large_image_post_info_letterspacing\";s:0:\"\";s:35:\"blog_large_image_ql_post_info_color\";s:0:\"\";s:40:\"blog_large_image_ql_post_info_link_color\";s:0:\"\";s:46:\"blog_large_image_ql_post_info_link_hover_color\";s:0:\"\";s:38:\"blog_large_image_ql_post_info_fontsize\";s:0:\"\";s:40:\"blog_large_image_ql_post_info_lineheight\";s:0:\"\";s:43:\"blog_large_image_ql_post_info_texttransform\";s:0:\"\";s:42:\"blog_large_image_ql_post_info_google_fonts\";s:2:\"-1\";s:39:\"blog_large_image_ql_post_info_fontstyle\";s:0:\"\";s:40:\"blog_large_image_ql_post_info_fontweight\";s:0:\"\";s:43:\"blog_large_image_ql_post_info_letterspacing\";s:0:\"\";s:28:\"blog_small_image_text_in_box\";s:7:\"Default\";s:23:\"blog_small_image_border\";s:7:\"Default\";s:29:\"blog_small_image_border_width\";s:0:\"\";s:33:\"blog_small_image_background_color\";s:0:\"\";s:29:\"blog_small_image_border_color\";s:0:\"\";s:28:\"blog_small_image_title_color\";s:0:\"\";s:34:\"blog_small_image_title_hover_color\";s:0:\"\";s:33:\"blog_small_image_title_date_color\";s:0:\"\";s:31:\"blog_small_image_title_fontsize\";s:0:\"\";s:33:\"blog_small_image_title_lineheight\";s:0:\"\";s:36:\"blog_small_image_title_texttransform\";s:0:\"\";s:35:\"blog_small_image_title_google_fonts\";s:2:\"-1\";s:32:\"blog_small_image_title_fontstyle\";s:0:\"\";s:33:\"blog_small_image_title_fontweight\";s:0:\"\";s:36:\"blog_small_image_title_letterspacing\";s:0:\"\";s:32:\"blog_small_image_post_info_color\";s:0:\"\";s:37:\"blog_small_image_post_info_link_color\";s:0:\"\";s:43:\"blog_small_image_post_info_link_hover_color\";s:0:\"\";s:35:\"blog_small_image_post_info_fontsize\";s:0:\"\";s:37:\"blog_small_image_post_info_lineheight\";s:0:\"\";s:40:\"blog_small_image_post_info_texttransform\";s:0:\"\";s:39:\"blog_small_image_post_info_google_fonts\";s:2:\"-1\";s:36:\"blog_small_image_post_info_fontstyle\";s:0:\"\";s:37:\"blog_small_image_post_info_fontweight\";s:0:\"\";s:40:\"blog_small_image_post_info_letterspacing\";s:0:\"\";s:35:\"blog_small_image_ql_post_info_color\";s:0:\"\";s:40:\"blog_small_image_ql_post_info_link_color\";s:0:\"\";s:46:\"blog_small_image_ql_post_info_link_hover_color\";s:0:\"\";s:38:\"blog_small_image_ql_post_info_fontsize\";s:0:\"\";s:40:\"blog_small_image_ql_post_info_lineheight\";s:0:\"\";s:43:\"blog_small_image_ql_post_info_texttransform\";s:0:\"\";s:42:\"blog_small_image_ql_post_info_google_fonts\";s:2:\"-1\";s:39:\"blog_small_image_ql_post_info_fontstyle\";s:0:\"\";s:40:\"blog_small_image_ql_post_info_fontweight\";s:0:\"\";s:43:\"blog_small_image_ql_post_info_letterspacing\";s:0:\"\";s:29:\"blog_masonry_background_color\";s:0:\"\";s:25:\"blog_masonry_border_color\";s:0:\"\";s:26:\"blog_masonry_border_radius\";s:0:\"\";s:24:\"blog_masonry_title_color\";s:0:\"\";s:30:\"blog_masonry_title_hover_color\";s:0:\"\";s:27:\"blog_masonry_title_fontsize\";s:0:\"\";s:29:\"blog_masonry_title_lineheight\";s:0:\"\";s:32:\"blog_masonry_title_texttransform\";s:0:\"\";s:31:\"blog_masonry_title_google_fonts\";s:2:\"-1\";s:28:\"blog_masonry_title_fontstyle\";s:0:\"\";s:29:\"blog_masonry_title_fontweight\";s:0:\"\";s:32:\"blog_masonry_title_letterspacing\";s:0:\"\";s:28:\"blog_masonry_post_info_color\";s:0:\"\";s:33:\"blog_masonry_post_info_link_color\";s:0:\"\";s:39:\"blog_masonry_post_info_link_hover_color\";s:0:\"\";s:31:\"blog_masonry_post_info_fontsize\";s:0:\"\";s:33:\"blog_masonry_post_info_lineheight\";s:0:\"\";s:36:\"blog_masonry_post_info_texttransform\";s:0:\"\";s:35:\"blog_masonry_post_info_google_fonts\";s:2:\"-1\";s:32:\"blog_masonry_post_info_fontstyle\";s:0:\"\";s:33:\"blog_masonry_post_info_fontweight\";s:0:\"\";s:36:\"blog_masonry_post_info_letterspacing\";s:0:\"\";s:31:\"blog_masonry_ql_post_info_color\";s:0:\"\";s:36:\"blog_masonry_ql_post_info_link_color\";s:0:\"\";s:42:\"blog_masonry_ql_post_info_link_hover_color\";s:0:\"\";s:34:\"blog_masonry_ql_post_info_fontsize\";s:0:\"\";s:36:\"blog_masonry_ql_post_info_lineheight\";s:0:\"\";s:39:\"blog_masonry_ql_post_info_texttransform\";s:0:\"\";s:38:\"blog_masonry_ql_post_info_google_fonts\";s:2:\"-1\";s:35:\"blog_masonry_ql_post_info_fontstyle\";s:0:\"\";s:36:\"blog_masonry_ql_post_info_fontweight\";s:0:\"\";s:39:\"blog_masonry_ql_post_info_letterspacing\";s:0:\"\";s:32:\"blog_masonry_gallery_title_color\";s:0:\"\";s:38:\"blog_masonry_gallery_title_hover_color\";s:0:\"\";s:35:\"blog_masonry_gallery_title_fontsize\";s:0:\"\";s:37:\"blog_masonry_gallery_title_lineheight\";s:0:\"\";s:40:\"blog_masonry_gallery_title_texttransform\";s:0:\"\";s:39:\"blog_masonry_gallery_title_google_fonts\";s:2:\"-1\";s:36:\"blog_masonry_gallery_title_fontstyle\";s:0:\"\";s:37:\"blog_masonry_gallery_title_fontweight\";s:0:\"\";s:40:\"blog_masonry_gallery_title_letterspacing\";s:0:\"\";s:36:\"blog_masonry_gallery_post_info_color\";s:0:\"\";s:41:\"blog_masonry_gallery_post_info_link_color\";s:0:\"\";s:47:\"blog_masonry_gallery_post_info_link_hover_color\";s:0:\"\";s:39:\"blog_masonry_gallery_post_info_fontsize\";s:0:\"\";s:41:\"blog_masonry_gallery_post_info_lineheight\";s:0:\"\";s:44:\"blog_masonry_gallery_post_info_texttransform\";s:0:\"\";s:43:\"blog_masonry_gallery_post_info_google_fonts\";s:2:\"-1\";s:40:\"blog_masonry_gallery_post_info_fontstyle\";s:0:\"\";s:41:\"blog_masonry_gallery_post_info_fontweight\";s:0:\"\";s:44:\"blog_masonry_gallery_post_info_letterspacing\";s:0:\"\";s:39:\"blog_masonry_gallery_ql_post_info_color\";s:0:\"\";s:42:\"blog_masonry_gallery_ql_post_info_fontsize\";s:0:\"\";s:44:\"blog_masonry_gallery_ql_post_info_lineheight\";s:0:\"\";s:47:\"blog_masonry_gallery_ql_post_info_texttransform\";s:0:\"\";s:46:\"blog_masonry_gallery_ql_post_info_google_fonts\";s:2:\"-1\";s:43:\"blog_masonry_gallery_ql_post_info_fontstyle\";s:0:\"\";s:44:\"blog_masonry_gallery_ql_post_info_fontweight\";s:0:\"\";s:47:\"blog_masonry_gallery_ql_post_info_letterspacing\";s:0:\"\";s:24:\"blog_gallery_title_color\";s:0:\"\";s:30:\"blog_gallery_title_hover_color\";s:0:\"\";s:27:\"blog_gallery_title_fontsize\";s:0:\"\";s:29:\"blog_gallery_title_lineheight\";s:0:\"\";s:32:\"blog_gallery_title_texttransform\";s:0:\"\";s:31:\"blog_gallery_title_google_fonts\";s:2:\"-1\";s:28:\"blog_gallery_title_fontstyle\";s:0:\"\";s:29:\"blog_gallery_title_fontweight\";s:0:\"\";s:32:\"blog_gallery_title_letterspacing\";s:0:\"\";s:28:\"blog_gallery_post_info_color\";s:0:\"\";s:33:\"blog_gallery_post_info_link_color\";s:0:\"\";s:39:\"blog_gallery_post_info_link_hover_color\";s:0:\"\";s:31:\"blog_gallery_post_info_fontsize\";s:0:\"\";s:33:\"blog_gallery_post_info_lineheight\";s:0:\"\";s:36:\"blog_gallery_post_info_texttransform\";s:0:\"\";s:35:\"blog_gallery_post_info_google_fonts\";s:2:\"-1\";s:32:\"blog_gallery_post_info_fontstyle\";s:0:\"\";s:33:\"blog_gallery_post_info_fontweight\";s:0:\"\";s:36:\"blog_gallery_post_info_letterspacing\";s:0:\"\";s:26:\"blog_chequered_title_color\";s:0:\"\";s:32:\"blog_chequered_title_hover_color\";s:0:\"\";s:29:\"blog_chequered_title_fontsize\";s:0:\"\";s:31:\"blog_chequered_title_lineheight\";s:0:\"\";s:34:\"blog_chequered_title_texttransform\";s:0:\"\";s:33:\"blog_chequered_title_google_fonts\";s:2:\"-1\";s:30:\"blog_chequered_title_fontstyle\";s:0:\"\";s:31:\"blog_chequered_title_fontweight\";s:0:\"\";s:34:\"blog_chequered_title_letterspacing\";s:0:\"\";s:30:\"blog_chequered_post_info_color\";s:0:\"\";s:35:\"blog_chequered_post_info_link_color\";s:0:\"\";s:41:\"blog_chequered_post_info_link_hover_color\";s:0:\"\";s:33:\"blog_chequered_post_info_fontsize\";s:0:\"\";s:35:\"blog_chequered_post_info_lineheight\";s:0:\"\";s:38:\"blog_chequered_post_info_texttransform\";s:0:\"\";s:37:\"blog_chequered_post_info_google_fonts\";s:2:\"-1\";s:34:\"blog_chequered_post_info_fontstyle\";s:0:\"\";s:35:\"blog_chequered_post_info_fontweight\";s:0:\"\";s:38:\"blog_chequered_post_info_letterspacing\";s:0:\"\";s:33:\"blog_chequered_ql_post_info_color\";s:0:\"\";s:36:\"blog_chequered_ql_post_info_fontsize\";s:0:\"\";s:38:\"blog_chequered_ql_post_info_lineheight\";s:0:\"\";s:41:\"blog_chequered_ql_post_info_texttransform\";s:0:\"\";s:40:\"blog_chequered_ql_post_info_google_fonts\";s:2:\"-1\";s:37:\"blog_chequered_ql_post_info_fontstyle\";s:0:\"\";s:38:\"blog_chequered_ql_post_info_fontweight\";s:0:\"\";s:41:\"blog_chequered_ql_post_info_letterspacing\";s:0:\"\";s:41:\"blog_large_image_simple_side_padding_left\";s:0:\"\";s:42:\"blog_large_image_simple_side_padding_right\";s:0:\"\";s:35:\"blog_large_image_simple_title_color\";s:0:\"\";s:41:\"blog_large_image_simple_title_hover_color\";s:0:\"\";s:38:\"blog_large_image_simple_title_fontsize\";s:0:\"\";s:40:\"blog_large_image_simple_title_lineheight\";s:0:\"\";s:43:\"blog_large_image_simple_title_texttransform\";s:0:\"\";s:42:\"blog_large_image_simple_title_google_fonts\";s:2:\"-1\";s:39:\"blog_large_image_simple_title_fontstyle\";s:0:\"\";s:40:\"blog_large_image_simple_title_fontweight\";s:0:\"\";s:43:\"blog_large_image_simple_title_letterspacing\";s:0:\"\";s:39:\"blog_large_image_simple_post_info_color\";s:0:\"\";s:42:\"blog_large_image_simple_post_info_fontsize\";s:0:\"\";s:44:\"blog_large_image_simple_post_info_lineheight\";s:0:\"\";s:47:\"blog_large_image_simple_post_info_texttransform\";s:0:\"\";s:46:\"blog_large_image_simple_post_info_google_fonts\";s:2:\"-1\";s:43:\"blog_large_image_simple_post_info_fontstyle\";s:0:\"\";s:44:\"blog_large_image_simple_post_info_fontweight\";s:0:\"\";s:47:\"blog_large_image_simple_post_info_letterspacing\";s:0:\"\";s:42:\"blog_large_image_simple_ql_post_info_color\";s:0:\"\";s:45:\"blog_large_image_simple_ql_post_info_fontsize\";s:0:\"\";s:47:\"blog_large_image_simple_ql_post_info_lineheight\";s:0:\"\";s:50:\"blog_large_image_simple_ql_post_info_texttransform\";s:0:\"\";s:49:\"blog_large_image_simple_ql_post_info_google_fonts\";s:2:\"-1\";s:46:\"blog_large_image_simple_ql_post_info_fontstyle\";s:0:\"\";s:47:\"blog_large_image_simple_ql_post_info_fontweight\";s:0:\"\";s:50:\"blog_large_image_simple_ql_post_info_letterspacing\";s:0:\"\";s:42:\"blog_large_image_dividers_background_color\";s:0:\"\";s:37:\"blog_large_image_dividers_title_color\";s:0:\"\";s:43:\"blog_large_image_dividers_title_hover_color\";s:0:\"\";s:40:\"blog_large_image_dividers_title_fontsize\";s:0:\"\";s:42:\"blog_large_image_dividers_title_lineheight\";s:0:\"\";s:45:\"blog_large_image_dividers_title_texttransform\";s:0:\"\";s:44:\"blog_large_image_dividers_title_google_fonts\";s:2:\"-1\";s:41:\"blog_large_image_dividers_title_fontstyle\";s:0:\"\";s:42:\"blog_large_image_dividers_title_fontweight\";s:0:\"\";s:45:\"blog_large_image_dividers_title_letterspacing\";s:0:\"\";s:41:\"blog_large_image_dividers_post_info_color\";s:0:\"\";s:46:\"blog_large_image_dividers_post_info_link_color\";s:0:\"\";s:52:\"blog_large_image_dividers_post_info_link_hover_color\";s:0:\"\";s:44:\"blog_large_image_dividers_post_info_fontsize\";s:0:\"\";s:46:\"blog_large_image_dividers_post_info_lineheight\";s:0:\"\";s:49:\"blog_large_image_dividers_post_info_texttransform\";s:0:\"\";s:48:\"blog_large_image_dividers_post_info_google_fonts\";s:2:\"-1\";s:45:\"blog_large_image_dividers_post_info_fontstyle\";s:0:\"\";s:46:\"blog_large_image_dividers_post_info_fontweight\";s:0:\"\";s:49:\"blog_large_image_dividers_post_info_letterspacing\";s:0:\"\";s:44:\"blog_large_image_dividers_ql_post_info_color\";s:0:\"\";s:49:\"blog_large_image_dividers_ql_post_info_link_color\";s:0:\"\";s:55:\"blog_large_image_dividers_ql_post_info_link_hover_color\";s:0:\"\";s:47:\"blog_large_image_dividers_ql_post_info_fontsize\";s:0:\"\";s:49:\"blog_large_image_dividers_ql_post_info_lineheight\";s:0:\"\";s:52:\"blog_large_image_dividers_ql_post_info_texttransform\";s:0:\"\";s:51:\"blog_large_image_dividers_ql_post_info_google_fonts\";s:2:\"-1\";s:48:\"blog_large_image_dividers_ql_post_info_fontstyle\";s:0:\"\";s:49:\"blog_large_image_dividers_ql_post_info_fontweight\";s:0:\"\";s:52:\"blog_large_image_dividers_ql_post_info_letterspacing\";s:0:\"\";s:30:\"blog_vertical_loop_title_color\";s:0:\"\";s:36:\"blog_vertical_loop_title_hover_color\";s:0:\"\";s:33:\"blog_vertical_loop_title_fontsize\";s:0:\"\";s:35:\"blog_vertical_loop_title_lineheight\";s:0:\"\";s:38:\"blog_vertical_loop_title_texttransform\";s:0:\"\";s:37:\"blog_vertical_loop_title_google_fonts\";s:2:\"-1\";s:34:\"blog_vertical_loop_title_fontstyle\";s:0:\"\";s:35:\"blog_vertical_loop_title_fontweight\";s:0:\"\";s:38:\"blog_vertical_loop_title_letterspacing\";s:0:\"\";s:40:\"blog_vertical_loop_next_post_title_color\";s:0:\"\";s:43:\"blog_vertical_loop_next_post_title_fontsize\";s:0:\"\";s:45:\"blog_vertical_loop_next_post_title_lineheight\";s:0:\"\";s:48:\"blog_vertical_loop_next_post_title_texttransform\";s:0:\"\";s:47:\"blog_vertical_loop_next_post_title_google_fonts\";s:2:\"-1\";s:44:\"blog_vertical_loop_next_post_title_fontstyle\";s:0:\"\";s:45:\"blog_vertical_loop_next_post_title_fontweight\";s:0:\"\";s:48:\"blog_vertical_loop_next_post_title_letterspacing\";s:0:\"\";s:34:\"blog_vertical_loop_post_info_color\";s:0:\"\";s:39:\"blog_vertical_loop_post_info_link_color\";s:0:\"\";s:40:\"blog_vertical_loop_post_info_hover_color\";s:0:\"\";s:37:\"blog_vertical_loop_post_info_fontsize\";s:0:\"\";s:39:\"blog_vertical_loop_post_info_lineheight\";s:0:\"\";s:42:\"blog_vertical_loop_post_info_texttransform\";s:0:\"\";s:41:\"blog_vertical_loop_post_info_google_fonts\";s:2:\"-1\";s:38:\"blog_vertical_loop_post_info_fontstyle\";s:0:\"\";s:39:\"blog_vertical_loop_post_info_fontweight\";s:0:\"\";s:42:\"blog_vertical_loop_post_info_letterspacing\";s:0:\"\";s:33:\"blog_vertical_loop_ql_title_color\";s:0:\"\";s:39:\"blog_vertical_loop_ql_title_hover_color\";s:0:\"\";s:40:\"blog_vertical_loop_ql_title_author_color\";s:0:\"\";s:36:\"blog_vertical_loop_ql_title_fontsize\";s:0:\"\";s:38:\"blog_vertical_loop_ql_title_lineheight\";s:0:\"\";s:41:\"blog_vertical_loop_ql_title_texttransform\";s:0:\"\";s:40:\"blog_vertical_loop_ql_title_google_fonts\";s:2:\"-1\";s:37:\"blog_vertical_loop_ql_title_fontstyle\";s:0:\"\";s:38:\"blog_vertical_loop_ql_title_fontweight\";s:0:\"\";s:41:\"blog_vertical_loop_ql_title_letterspacing\";s:0:\"\";s:37:\"blog_vertical_loop_ql_post_info_color\";s:0:\"\";s:42:\"blog_vertical_loop_ql_post_info_link_color\";s:0:\"\";s:43:\"blog_vertical_loop_ql_post_info_hover_color\";s:0:\"\";s:40:\"blog_vertical_loop_ql_post_info_fontsize\";s:0:\"\";s:42:\"blog_vertical_loop_ql_post_info_lineheight\";s:0:\"\";s:45:\"blog_vertical_loop_ql_post_info_texttransform\";s:0:\"\";s:44:\"blog_vertical_loop_ql_post_info_google_fonts\";s:2:\"-1\";s:41:\"blog_vertical_loop_ql_post_info_fontstyle\";s:0:\"\";s:42:\"blog_vertical_loop_ql_post_info_fontweight\";s:0:\"\";s:45:\"blog_vertical_loop_ql_post_info_letterspacing\";s:0:\"\";s:39:\"blog_vertical_loop_npb_background_color\";s:0:\"\";s:45:\"blog_vertical_loop_npb_background_hover_color\";s:0:\"\";s:33:\"blog_vertical_loop_npb_icon_color\";s:0:\"\";s:39:\"blog_vertical_loop_npb_icon_hover_color\";s:0:\"\";s:40:\"blog_masonry_date_image_background_color\";s:0:\"\";s:35:\"blog_masonry_date_image_title_color\";s:0:\"\";s:41:\"blog_masonry_date_image_title_hover_color\";s:0:\"\";s:38:\"blog_masonry_date_image_title_fontsize\";s:0:\"\";s:40:\"blog_masonry_date_image_title_lineheight\";s:0:\"\";s:43:\"blog_masonry_date_image_title_texttransform\";s:0:\"\";s:42:\"blog_masonry_date_image_title_google_fonts\";s:2:\"-1\";s:39:\"blog_masonry_date_image_title_fontstyle\";s:0:\"\";s:40:\"blog_masonry_date_image_title_fontweight\";s:0:\"\";s:43:\"blog_masonry_date_image_title_letterspacing\";s:0:\"\";s:34:\"blog_masonry_date_image_hover_type\";s:0:\"\";s:31:\"blog_pinterest_background_color\";s:0:\"\";s:26:\"blog_pinterest_title_color\";s:0:\"\";s:32:\"blog_pinterest_title_hover_color\";s:0:\"\";s:29:\"blog_pinterest_title_fontsize\";s:0:\"\";s:31:\"blog_pinterest_title_lineheight\";s:0:\"\";s:34:\"blog_pinterest_title_texttransform\";s:0:\"\";s:33:\"blog_pinterest_title_google_fonts\";s:2:\"-1\";s:30:\"blog_pinterest_title_fontstyle\";s:0:\"\";s:31:\"blog_pinterest_title_fontweight\";s:0:\"\";s:34:\"blog_pinterest_title_letterspacing\";s:0:\"\";s:30:\"blog_pinterest_post_info_color\";s:0:\"\";s:35:\"blog_pinterest_post_info_link_color\";s:0:\"\";s:41:\"blog_pinterest_post_info_link_hover_color\";s:0:\"\";s:33:\"blog_pinterest_post_info_fontsize\";s:0:\"\";s:35:\"blog_pinterest_post_info_lineheight\";s:0:\"\";s:38:\"blog_pinterest_post_info_texttransform\";s:0:\"\";s:37:\"blog_pinterest_post_info_google_fonts\";s:2:\"-1\";s:34:\"blog_pinterest_post_info_fontstyle\";s:0:\"\";s:35:\"blog_pinterest_post_info_fontweight\";s:0:\"\";s:38:\"blog_pinterest_post_info_letterspacing\";s:0:\"\";s:33:\"blog_pinterest_ql_post_info_color\";s:0:\"\";s:36:\"blog_pinterest_ql_post_info_fontsize\";s:0:\"\";s:38:\"blog_pinterest_ql_post_info_lineheight\";s:0:\"\";s:41:\"blog_pinterest_ql_post_info_texttransform\";s:0:\"\";s:40:\"blog_pinterest_ql_post_info_google_fonts\";s:2:\"-1\";s:37:\"blog_pinterest_ql_post_info_fontstyle\";s:0:\"\";s:38:\"blog_pinterest_ql_post_info_fontweight\";s:0:\"\";s:41:\"blog_pinterest_ql_post_info_letterspacing\";s:0:\"\";s:16:\"blog_single_type\";s:8:\"standard\";s:23:\"blog_imt_post_separator\";s:2:\"no\";s:32:\"blog_imt_post_separator_gradient\";s:2:\"no\";s:24:\"show_image_on_audio_post\";s:2:\"no\";s:19:\"blog_single_sidebar\";s:7:\"default\";s:34:\"blog_single_sidebar_custom_display\";s:0:\"\";s:22:\"blog_share_like_layout\";s:12:\"in_post_info\";s:16:\"blog_author_info\";s:2:\"no\";s:31:\"blog_single_image_margin_bottom\";s:0:\"\";s:31:\"blog_single_title_margin_bottom\";s:0:\"\";s:35:\"blog_single_post_info_margin_bottom\";s:0:\"\";s:25:\"blog_quote_link_box_color\";s:0:\"\";s:23:\"blog_slider_title_color\";s:0:\"\";s:29:\"blog_slider_title_hover_color\";s:0:\"\";s:26:\"blog_slider_title_fontsize\";s:0:\"\";s:28:\"blog_slider_title_lineheight\";s:0:\"\";s:31:\"blog_slider_title_texttransform\";s:0:\"\";s:30:\"blog_slider_title_google_fonts\";s:2:\"-1\";s:27:\"blog_slider_title_fontstyle\";s:0:\"\";s:28:\"blog_slider_title_fontweight\";s:0:\"\";s:31:\"blog_slider_title_letterspacing\";s:0:\"\";s:27:\"blog_slider_post_info_color\";s:0:\"\";s:32:\"blog_slider_post_info_link_color\";s:0:\"\";s:38:\"blog_slider_post_info_link_hover_color\";s:0:\"\";s:30:\"blog_slider_post_info_fontsize\";s:0:\"\";s:32:\"blog_slider_post_info_lineheight\";s:0:\"\";s:35:\"blog_slider_post_info_texttransform\";s:0:\"\";s:34:\"blog_slider_post_info_google_fonts\";s:2:\"-1\";s:31:\"blog_slider_post_info_fontstyle\";s:0:\"\";s:32:\"blog_slider_post_info_fontweight\";s:0:\"\";s:35:\"blog_slider_post_info_letterspacing\";s:0:\"\";s:21:\"blog_slider_day_color\";s:0:\"\";s:24:\"blog_slider_day_fontsize\";s:0:\"\";s:26:\"blog_slider_day_lineheight\";s:0:\"\";s:29:\"blog_slider_day_texttransform\";s:0:\"\";s:28:\"blog_slider_day_google_fonts\";s:2:\"-1\";s:25:\"blog_slider_day_fontstyle\";s:0:\"\";s:26:\"blog_slider_day_fontweight\";s:0:\"\";s:29:\"blog_slider_day_letterspacing\";s:0:\"\";s:31:\"blog_slider_title_bottom_margin\";s:0:\"\";s:30:\"blog_slider_date_bottom_margin\";s:0:\"\";s:22:\"blog_slider_day_margin\";s:0:\"\";s:25:\"blog_slsimple_title_color\";s:0:\"\";s:31:\"blog_slsimple_title_hover_color\";s:0:\"\";s:28:\"blog_slsimple_title_fontsize\";s:0:\"\";s:30:\"blog_slsimple_title_lineheight\";s:0:\"\";s:33:\"blog_slsimple_title_texttransform\";s:0:\"\";s:32:\"blog_slsimple_title_google_fonts\";s:2:\"-1\";s:29:\"blog_slsimple_title_fontstyle\";s:0:\"\";s:30:\"blog_slsimple_title_fontweight\";s:0:\"\";s:33:\"blog_slsimple_title_letterspacing\";s:0:\"\";s:29:\"blog_slsimple_post_info_color\";s:0:\"\";s:34:\"blog_slsimple_post_info_link_color\";s:0:\"\";s:40:\"blog_slsimple_post_info_link_hover_color\";s:0:\"\";s:32:\"blog_slsimple_post_info_fontsize\";s:0:\"\";s:34:\"blog_slsimple_post_info_lineheight\";s:0:\"\";s:37:\"blog_slsimple_post_info_texttransform\";s:0:\"\";s:36:\"blog_slsimple_post_info_google_fonts\";s:2:\"-1\";s:33:\"blog_slsimple_post_info_fontstyle\";s:0:\"\";s:34:\"blog_slsimple_post_info_fontweight\";s:0:\"\";s:37:\"blog_slsimple_post_info_letterspacing\";s:0:\"\";s:33:\"blog_slsimple_title_bottom_margin\";s:0:\"\";s:37:\"blog_slsimple_post_info_bottom_margin\";s:0:\"\";s:35:\"blog_slsimple_excerpt_bottom_margin\";s:0:\"\";s:32:\"blog_slider_box_background_color\";s:0:\"\";s:34:\"blog_slider_box_background_opacity\";s:0:\"\";s:28:\"blog_slider_box_border_color\";s:0:\"\";s:30:\"blog_slider_box_border_opacity\";s:0:\"\";s:27:\"blog_slider_box_padding_top\";s:0:\"\";s:29:\"blog_slider_box_padding_right\";s:0:\"\";s:30:\"blog_slider_box_padding_bottom\";s:0:\"\";s:28:\"blog_slider_box_padding_left\";s:0:\"\";s:21:\"blog_slider_box_width\";s:0:\"\";s:23:\"pagination_border_color\";s:0:\"\";s:23:\"pagination_number_color\";s:0:\"\";s:33:\"pagination_hover_background_color\";s:0:\"\";s:29:\"pagination_hover_number_color\";s:0:\"\";s:16:\"pagination_width\";s:0:\"\";s:17:\"pagination_height\";s:0:\"\";s:24:\"pagination_border_radius\";s:0:\"\";s:23:\"pagination_border_width\";s:0:\"\";s:20:\"pagination_font_size\";s:0:\"\";s:16:\"pagination_space\";s:0:\"\";s:15:\"portfolio_style\";s:1:\"1\";s:19:\"portfolio_qode_like\";s:2:\"on\";s:23:\"lightbox_single_project\";s:3:\"yes\";s:29:\"lightbox_video_single_project\";s:2:\"no\";s:24:\"portfolio_columns_number\";s:1:\"2\";s:24:\"portfolio_single_sidebar\";s:7:\"default\";s:39:\"portfolio_single_sidebar_custom_display\";s:0:\"\";s:21:\"portfolio_single_slug\";s:0:\"\";s:36:\"disable_portfolio_single_title_label\";s:2:\"no\";s:21:\"portfolio_text_follow\";s:23:\"portfolio_single_follow\";s:25:\"enable_portfolio_comments\";s:2:\"no\";s:24:\"enable_portfolio_related\";s:2:\"no\";s:28:\"portfolio_related_image_size\";s:0:\"\";s:23:\"enable_navigation_title\";s:2:\"no\";s:42:\"portfolio_navigation_through_same_category\";s:2:\"no\";s:28:\"portfolio_list_overlay_color\";s:0:\"\";s:30:\"portfolio_list_overlay_opacity\";s:0:\"\";s:35:\"portfolio_list_standard_title_color\";s:0:\"\";s:41:\"portfolio_list_standard_title_hover_color\";s:0:\"\";s:38:\"portfolio_list_standard_title_fontsize\";s:0:\"\";s:40:\"portfolio_list_standard_title_lineheight\";s:0:\"\";s:43:\"portfolio_list_standard_title_texttransform\";s:0:\"\";s:42:\"portfolio_list_standard_title_google_fonts\";s:2:\"-1\";s:39:\"portfolio_list_standard_title_fontstyle\";s:0:\"\";s:40:\"portfolio_list_standard_title_fontweight\";s:0:\"\";s:43:\"portfolio_list_standard_title_letterspacing\";s:0:\"\";s:38:\"portfolio_list_standard_category_color\";s:0:\"\";s:41:\"portfolio_list_standard_category_fontsize\";s:0:\"\";s:43:\"portfolio_list_standard_category_lineheight\";s:0:\"\";s:46:\"portfolio_list_standard_category_texttransform\";s:0:\"\";s:45:\"portfolio_list_standard_category_google_fonts\";s:2:\"-1\";s:42:\"portfolio_list_standard_category_fontstyle\";s:0:\"\";s:43:\"portfolio_list_standard_category_fontweight\";s:0:\"\";s:46:\"portfolio_list_standard_category_letterspacing\";s:0:\"\";s:34:\"portfolio_list_gallery_title_color\";s:0:\"\";s:40:\"portfolio_list_gallery_title_hover_color\";s:0:\"\";s:37:\"portfolio_list_gallery_title_fontsize\";s:0:\"\";s:39:\"portfolio_list_gallery_title_lineheight\";s:0:\"\";s:42:\"portfolio_list_gallery_title_texttransform\";s:0:\"\";s:41:\"portfolio_list_gallery_title_google_fonts\";s:2:\"-1\";s:38:\"portfolio_list_gallery_title_fontstyle\";s:0:\"\";s:39:\"portfolio_list_gallery_title_fontweight\";s:0:\"\";s:42:\"portfolio_list_gallery_title_letterspacing\";s:0:\"\";s:37:\"portfolio_list_gallery_category_color\";s:0:\"\";s:40:\"portfolio_list_gallery_category_fontsize\";s:0:\"\";s:42:\"portfolio_list_gallery_category_lineheight\";s:0:\"\";s:45:\"portfolio_list_gallery_category_texttransform\";s:0:\"\";s:44:\"portfolio_list_gallery_category_google_fonts\";s:2:\"-1\";s:41:\"portfolio_list_gallery_category_fontstyle\";s:0:\"\";s:42:\"portfolio_list_gallery_category_fontweight\";s:0:\"\";s:45:\"portfolio_list_gallery_category_letterspacing\";s:0:\"\";s:38:\"portfolio_list_filter_background_color\";s:0:\"\";s:28:\"portfolio_list_filter_height\";s:0:\"\";s:30:\"portfolio_filter_margin_bottom\";s:0:\"\";s:26:\"thin_icon_only_font_family\";s:0:\"\";s:29:\"vss_navigation_inactive_color\";s:0:\"\";s:36:\"vss_navigation_inactive_border_color\";s:0:\"\";s:20:\"vss_navigation_color\";s:0:\"\";s:27:\"vss_navigation_border_color\";s:0:\"\";s:19:\"vss_navigation_size\";s:0:\"\";s:19:\"vss_left_panel_size\";s:0:\"\";s:20:\"vss_right_panel_size\";s:0:\"\";s:23:\"vss_responsive_advanced\";s:2:\"no\";s:29:\"vss_responsive_advanced_width\";s:3:\"768\";s:19:\"enable_social_share\";s:2:\"no\";s:21:\"post_types_names_post\";s:0:\"\";s:21:\"post_types_names_page\";s:0:\"\";s:27:\"post_types_names_attachment\";s:0:\"\";s:31:\"post_types_names_portfolio_page\";s:0:\"\";s:21:\"enable_facebook_share\";s:2:\"no\";s:13:\"facebook_icon\";s:0:\"\";s:20:\"enable_twitter_share\";s:2:\"no\";s:12:\"twitter_icon\";s:0:\"\";s:11:\"twitter_via\";s:0:\"\";s:18:\"enable_google_plus\";s:2:\"no\";s:16:\"google_plus_icon\";s:0:\"\";s:15:\"enable_linkedin\";s:2:\"no\";s:13:\"linkedin_icon\";s:0:\"\";s:13:\"enable_tumblr\";s:2:\"no\";s:11:\"tumblr_icon\";s:0:\"\";s:16:\"enable_pinterest\";s:2:\"no\";s:14:\"pinterest_icon\";s:0:\"\";s:9:\"enable_vk\";s:2:\"no\";s:7:\"vk_icon\";s:0:\"\";s:9:\"404_title\";s:0:\"\";s:12:\"404_subtitle\";s:0:\"\";s:8:\"404_text\";s:200:\"The page you are looking for does not exist. It may have been moved, or removed altogether. Perhaps you can return back to the site’s homepage <br/> and see if you can find what you are looking for.\";s:13:\"404_backlabel\";s:0:\"\";s:17:\"enable_google_map\";s:2:\"no\";s:24:\"section_between_map_form\";s:3:\"yes\";s:19:\"enable_contact_form\";s:2:\"no\";s:19:\"google_maps_address\";s:0:\"\";s:20:\"google_maps_address2\";s:0:\"\";s:20:\"google_maps_address3\";s:0:\"\";s:20:\"google_maps_address4\";s:0:\"\";s:20:\"google_maps_address5\";s:0:\"\";s:21:\"google_maps_pin_image\";s:96:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/bridge/img/pin.png\";s:18:\"google_maps_height\";s:3:\"750\";s:16:\"google_maps_zoom\";s:2:\"12\";s:24:\"google_maps_scroll_wheel\";s:2:\"no\";s:17:\"google_maps_style\";s:3:\"yes\";s:17:\"google_maps_color\";s:0:\"\";s:22:\"google_maps_saturation\";s:0:\"\";s:21:\"google_maps_lightness\";s:0:\"\";s:33:\"section_between_map_form_position\";s:0:\"\";s:32:\"contact_section_above_form_title\";s:0:\"\";s:35:\"contact_section_above_form_subtitle\";s:0:\"\";s:12:\"receive_mail\";s:0:\"\";s:10:\"email_from\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:25:\"hide_contact_form_website\";s:2:\"no\";s:21:\"contact_heading_above\";s:0:\"\";s:13:\"use_recaptcha\";s:2:\"no\";s:20:\"recaptcha_public_key\";s:0:\"\";s:21:\"recaptcha_private_key\";s:0:\"\";s:14:\"parallax_onoff\";s:3:\"off\";s:18:\"parallax_minheight\";s:3:\"400\";s:26:\"enable_content_bottom_area\";s:2:\"no\";s:37:\"content_bottom_sidebar_custom_display\";s:0:\"\";s:22:\"content_bottom_in_grid\";s:3:\"yes\";s:31:\"content_bottom_background_color\";s:0:\"\";s:21:\"qode_maintenance_mode\";s:2:\"no\";s:21:\"qode_maintenance_page\";s:0:\"\";s:17:\"reset_to_defaults\";s:2:\"no\";s:28:\"menu_separator_between_items\";s:2:\"no\";s:20:\"menu_separator_color\";s:0:\"\";s:23:\"menu_padding_left_right\";s:0:\"\";s:16:\"menu_item_border\";s:2:\"no\";s:43:\"cf7_custom_style_1_element_background_color\";s:0:\"\";s:49:\"cf7_custom_style_1_element_focus_background_color\";s:0:\"\";s:50:\"cf7_custom_style_1_element_background_transparency\";s:1:\"0\";s:39:\"cf7_custom_style_1_element_border_color\";s:7:\"#dddddd\";s:45:\"cf7_custom_style_1_element_focus_border_color\";s:7:\"#dddddd\";s:38:\"cf7_custom_style_1_border_transparency\";s:0:\"\";s:39:\"cf7_custom_style_1_element_border_width\";s:1:\"1\";s:47:\"cf7_custom_style_1_element_enable_border_bottom\";s:2:\"no\";s:49:\"cf7_custom_style_1_element_border_radius_top_left\";s:1:\"0\";s:50:\"cf7_custom_style_1_element_border_radius_top_right\";s:1:\"0\";s:53:\"cf7_custom_style_1_element_border_radius_bottom_right\";s:1:\"0\";s:52:\"cf7_custom_style_1_element_border_radius_bottom_left\";s:1:\"0\";s:37:\"cf7_custom_style_1_element_font_color\";s:7:\"#404d56\";s:43:\"cf7_custom_style_1_element_font_focus_color\";s:7:\"#404d56\";s:36:\"cf7_custom_style_1_element_font_size\";s:2:\"16\";s:38:\"cf7_custom_style_1_element_line_height\";s:2:\"27\";s:38:\"cf7_custom_style_1_element_font_family\";s:9:\"Open+Sans\";s:37:\"cf7_custom_style_1_element_font_style\";s:6:\"normal\";s:38:\"cf7_custom_style_1_element_font_weight\";s:3:\"300\";s:41:\"cf7_custom_style_1_element_text_transform\";s:10:\"capitalize\";s:41:\"cf7_custom_style_1_element_letter_spacing\";s:3:\"0.5\";s:38:\"cf7_custom_style_1_element_padding_top\";s:1:\"9\";s:40:\"cf7_custom_style_1_element_padding_right\";s:2:\"15\";s:41:\"cf7_custom_style_1_element_padding_bottom\";s:1:\"8\";s:39:\"cf7_custom_style_1_element_padding_left\";s:2:\"15\";s:37:\"cf7_custom_style_1_element_margin_top\";s:1:\"0\";s:40:\"cf7_custom_style_1_element_margin_bottom\";s:2:\"20\";s:42:\"cf7_custom_style_1_button_background_color\";s:7:\"#ffffff\";s:48:\"cf7_custom_style_1_button_hover_background_color\";s:7:\"#404d56\";s:49:\"cf7_custom_style_1_button_background_transparency\";s:0:\"\";s:38:\"cf7_custom_style_1_button_border_color\";s:7:\"#404d56\";s:44:\"cf7_custom_style_1_button_hover_border_color\";s:7:\"#404d56\";s:45:\"cf7_custom_style_1_button_border_transparency\";s:0:\"\";s:38:\"cf7_custom_style_1_button_border_width\";s:1:\"1\";s:48:\"cf7_custom_style_1_button_border_radius_top_left\";s:1:\"0\";s:49:\"cf7_custom_style_1_button_border_radius_top_right\";s:1:\"0\";s:52:\"cf7_custom_style_1_button_border_radius_bottom_right\";s:1:\"0\";s:51:\"cf7_custom_style_1_button_border_radius_bottom_left\";s:1:\"0\";s:36:\"cf7_custom_style_1_button_font_color\";s:7:\"#404d56\";s:42:\"cf7_custom_style_1_button_font_hover_color\";s:7:\"#ffffff\";s:35:\"cf7_custom_style_1_button_font_size\";s:2:\"14\";s:37:\"cf7_custom_style_1_button_font_family\";s:18:\"Cormorant+Garamond\";s:36:\"cf7_custom_style_1_button_font_style\";s:6:\"normal\";s:37:\"cf7_custom_style_1_button_font_weight\";s:3:\"400\";s:40:\"cf7_custom_style_1_button_text_transform\";s:9:\"uppercase\";s:40:\"cf7_custom_style_1_button_letter_spacing\";s:4:\"4.16\";s:32:\"cf7_custom_style_1_button_height\";s:2:\"45\";s:33:\"cf7_custom_style_1_button_padding\";s:2:\"45\";s:31:\"cf7_custom_style_1_button_hover\";s:0:\"\";s:21:\"button_cf1_full_width\";s:2:\"no\";s:34:\"cf7_custom_style_1_textarea_height\";s:3:\"140\";s:43:\"cf7_custom_style_2_element_background_color\";s:0:\"\";s:49:\"cf7_custom_style_2_element_focus_background_color\";s:0:\"\";s:50:\"cf7_custom_style_2_element_background_transparency\";s:0:\"\";s:39:\"cf7_custom_style_2_element_border_color\";s:0:\"\";s:45:\"cf7_custom_style_2_element_focus_border_color\";s:0:\"\";s:38:\"cf7_custom_style_2_border_transparency\";s:0:\"\";s:39:\"cf7_custom_style_2_element_border_width\";s:0:\"\";s:47:\"cf7_custom_style_2_element_enable_border_bottom\";s:2:\"no\";s:49:\"cf7_custom_style_2_element_border_radius_top_left\";s:0:\"\";s:50:\"cf7_custom_style_2_element_border_radius_top_right\";s:0:\"\";s:53:\"cf7_custom_style_2_element_border_radius_bottom_right\";s:0:\"\";s:52:\"cf7_custom_style_2_element_border_radius_bottom_left\";s:0:\"\";s:37:\"cf7_custom_style_2_element_font_color\";s:0:\"\";s:43:\"cf7_custom_style_2_element_font_focus_color\";s:0:\"\";s:36:\"cf7_custom_style_2_element_font_size\";s:0:\"\";s:38:\"cf7_custom_style_2_element_line_height\";s:0:\"\";s:38:\"cf7_custom_style_2_element_font_family\";s:2:\"-1\";s:37:\"cf7_custom_style_2_element_font_style\";s:0:\"\";s:38:\"cf7_custom_style_2_element_font_weight\";s:0:\"\";s:41:\"cf7_custom_style_2_element_text_transform\";s:0:\"\";s:41:\"cf7_custom_style_2_element_letter_spacing\";s:0:\"\";s:38:\"cf7_custom_style_2_element_padding_top\";s:0:\"\";s:40:\"cf7_custom_style_2_element_padding_right\";s:0:\"\";s:41:\"cf7_custom_style_2_element_padding_bottom\";s:0:\"\";s:39:\"cf7_custom_style_2_element_padding_left\";s:0:\"\";s:37:\"cf7_custom_style_2_element_margin_top\";s:0:\"\";s:40:\"cf7_custom_style_2_element_margin_bottom\";s:0:\"\";s:42:\"cf7_custom_style_2_button_background_color\";s:0:\"\";s:48:\"cf7_custom_style_2_button_hover_background_color\";s:0:\"\";s:49:\"cf7_custom_style_2_button_background_transparency\";s:0:\"\";s:38:\"cf7_custom_style_2_button_border_color\";s:0:\"\";s:44:\"cf7_custom_style_2_button_hover_border_color\";s:0:\"\";s:45:\"cf7_custom_style_2_button_border_transparency\";s:0:\"\";s:38:\"cf7_custom_style_2_button_border_width\";s:0:\"\";s:48:\"cf7_custom_style_2_button_border_radius_top_left\";s:0:\"\";s:49:\"cf7_custom_style_2_button_border_radius_top_right\";s:0:\"\";s:52:\"cf7_custom_style_2_button_border_radius_bottom_right\";s:0:\"\";s:51:\"cf7_custom_style_2_button_border_radius_bottom_left\";s:0:\"\";s:36:\"cf7_custom_style_2_button_font_color\";s:0:\"\";s:42:\"cf7_custom_style_2_button_font_hover_color\";s:0:\"\";s:35:\"cf7_custom_style_2_button_font_size\";s:0:\"\";s:37:\"cf7_custom_style_2_button_font_family\";s:2:\"-1\";s:36:\"cf7_custom_style_2_button_font_style\";s:0:\"\";s:37:\"cf7_custom_style_2_button_font_weight\";s:0:\"\";s:40:\"cf7_custom_style_2_button_text_transform\";s:0:\"\";s:40:\"cf7_custom_style_2_button_letter_spacing\";s:0:\"\";s:32:\"cf7_custom_style_2_button_height\";s:0:\"\";s:33:\"cf7_custom_style_2_button_padding\";s:0:\"\";s:31:\"cf7_custom_style_2_button_hover\";s:0:\"\";s:21:\"button_cf2_full_width\";s:2:\"no\";s:34:\"cf7_custom_style_2_textarea_height\";s:0:\"\";s:43:\"cf7_custom_style_3_element_background_color\";s:0:\"\";s:49:\"cf7_custom_style_3_element_focus_background_color\";s:0:\"\";s:50:\"cf7_custom_style_3_element_background_transparency\";s:0:\"\";s:39:\"cf7_custom_style_3_element_border_color\";s:0:\"\";s:45:\"cf7_custom_style_3_element_focus_border_color\";s:0:\"\";s:38:\"cf7_custom_style_3_border_transparency\";s:0:\"\";s:39:\"cf7_custom_style_3_element_border_width\";s:0:\"\";s:47:\"cf7_custom_style_3_element_enable_border_bottom\";s:2:\"no\";s:49:\"cf7_custom_style_3_element_border_radius_top_left\";s:0:\"\";s:50:\"cf7_custom_style_3_element_border_radius_top_right\";s:0:\"\";s:53:\"cf7_custom_style_3_element_border_radius_bottom_right\";s:0:\"\";s:52:\"cf7_custom_style_3_element_border_radius_bottom_left\";s:0:\"\";s:37:\"cf7_custom_style_3_element_font_color\";s:0:\"\";s:43:\"cf7_custom_style_3_element_font_focus_color\";s:0:\"\";s:36:\"cf7_custom_style_3_element_font_size\";s:0:\"\";s:38:\"cf7_custom_style_3_element_line_height\";s:0:\"\";s:38:\"cf7_custom_style_3_element_font_family\";s:2:\"-1\";s:37:\"cf7_custom_style_3_element_font_style\";s:0:\"\";s:38:\"cf7_custom_style_3_element_font_weight\";s:0:\"\";s:41:\"cf7_custom_style_3_element_text_transform\";s:0:\"\";s:41:\"cf7_custom_style_3_element_letter_spacing\";s:0:\"\";s:38:\"cf7_custom_style_3_element_padding_top\";s:0:\"\";s:40:\"cf7_custom_style_3_element_padding_right\";s:0:\"\";s:41:\"cf7_custom_style_3_element_padding_bottom\";s:0:\"\";s:39:\"cf7_custom_style_3_element_padding_left\";s:0:\"\";s:37:\"cf7_custom_style_3_element_margin_top\";s:0:\"\";s:40:\"cf7_custom_style_3_element_margin_bottom\";s:0:\"\";s:42:\"cf7_custom_style_3_button_background_color\";s:0:\"\";s:48:\"cf7_custom_style_3_button_hover_background_color\";s:0:\"\";s:49:\"cf7_custom_style_3_button_background_transparency\";s:0:\"\";s:38:\"cf7_custom_style_3_button_border_color\";s:0:\"\";s:44:\"cf7_custom_style_3_button_hover_border_color\";s:0:\"\";s:45:\"cf7_custom_style_3_button_border_transparency\";s:0:\"\";s:38:\"cf7_custom_style_3_button_border_width\";s:0:\"\";s:48:\"cf7_custom_style_3_button_border_radius_top_left\";s:0:\"\";s:49:\"cf7_custom_style_3_button_border_radius_top_right\";s:0:\"\";s:52:\"cf7_custom_style_3_button_border_radius_bottom_right\";s:0:\"\";s:51:\"cf7_custom_style_3_button_border_radius_bottom_left\";s:0:\"\";s:36:\"cf7_custom_style_3_button_font_color\";s:0:\"\";s:42:\"cf7_custom_style_3_button_font_hover_color\";s:0:\"\";s:35:\"cf7_custom_style_3_button_font_size\";s:0:\"\";s:37:\"cf7_custom_style_3_button_font_family\";s:2:\"-1\";s:36:\"cf7_custom_style_3_button_font_style\";s:0:\"\";s:37:\"cf7_custom_style_3_button_font_weight\";s:0:\"\";s:40:\"cf7_custom_style_3_button_text_transform\";s:0:\"\";s:40:\"cf7_custom_style_3_button_letter_spacing\";s:0:\"\";s:32:\"cf7_custom_style_3_button_height\";s:0:\"\";s:33:\"cf7_custom_style_3_button_padding\";s:0:\"\";s:31:\"cf7_custom_style_3_button_hover\";s:0:\"\";s:21:\"button_cf3_full_width\";s:2:\"no\";s:34:\"cf7_custom_style_3_textarea_height\";s:0:\"\";s:20:\"disable_google_fonts\";s:2:\"no\";s:17:\"qode_custom_fonts\";s:0:\"\";s:18:\"content_grid_lines\";s:4:\"none\";s:23:\"content_grid_lines_skin\";s:5:\"light\";s:22:\"qode_ui_scripts_option\";a:35:{i:0;s:0:\"\";i:1;s:14:\"jquery-ui-core\";i:2;s:16:\"jquery-ui-widget\";i:3;s:19:\"jquery-ui-accordion\";i:4;s:22:\"jquery-ui-autocomplete\";i:5;s:16:\"jquery-ui-button\";i:6;s:20:\"jquery-ui-datepicker\";i:7;s:16:\"jquery-ui-dialog\";i:8;s:19:\"jquery-ui-draggable\";i:9;s:19:\"jquery-ui-droppable\";i:10;s:14:\"jquery-ui-menu\";i:11;s:15:\"jquery-ui-mouse\";i:12;s:18:\"jquery-ui-position\";i:13;s:21:\"jquery-ui-progressbar\";i:14;s:20:\"jquery-ui-selectable\";i:15;s:19:\"jquery-ui-resizable\";i:16;s:18:\"jquery-ui-sortable\";i:17;s:16:\"jquery-ui-slider\";i:18;s:17:\"jquery-ui-spinner\";i:19;s:17:\"jquery-ui-tooltip\";i:20;s:14:\"jquery-ui-tabs\";i:21;s:19:\"jquery-effects-core\";i:22;s:20:\"jquery-effects-blind\";i:23;s:21:\"jquery-effects-bounce\";i:24;s:19:\"jquery-effects-clip\";i:25;s:19:\"jquery-effects-drop\";i:26;s:22:\"jquery-effects-explode\";i:27;s:19:\"jquery-effects-fade\";i:28;s:19:\"jquery-effects-fold\";i:29;s:24:\"jquery-effects-highlight\";i:30;s:22:\"jquery-effects-pulsate\";i:31;s:20:\"jquery-effects-scale\";i:32;s:20:\"jquery-effects-shake\";i:33;s:20:\"jquery-effects-slide\";i:34;s:23:\"jquery-effects-transfer\";}s:20:\"sticky_mobile_header\";s:2:\"no\";s:27:\"enable_full_width_wide_menu\";s:2:\"no\";s:19:\"side_area_icon_kiko\";s:0:\"\";s:29:\"side_area_icon_font_awesome_5\";s:0:\"\";s:25:\"side_area_icon_svg_opener\";s:0:\"\";s:26:\"popup_menu_icon_svg_opener\";s:0:\"\";s:26:\"popup_menu_icon_svg_closer\";s:0:\"\";s:27:\"popup_menu_background_image\";s:0:\"\";s:21:\"mobile_menu_icon_kiko\";s:0:\"\";s:31:\"mobile_menu_icon_font_awesome_5\";s:0:\"\";s:21:\"small_tablet_title_fs\";s:0:\"\";s:21:\"small_tablet_title_lh\";s:0:\"\";s:21:\"small_mobile_title_fs\";s:0:\"\";s:21:\"small_mobile_title_lh\";s:0:\"\";s:22:\"medium_tablet_title_fs\";s:0:\"\";s:22:\"medium_tablet_title_lh\";s:0:\"\";s:22:\"medium_mobile_title_fs\";s:0:\"\";s:22:\"medium_mobile_title_lh\";s:0:\"\";s:21:\"large_tablet_title_fs\";s:0:\"\";s:21:\"large_tablet_title_lh\";s:0:\"\";s:21:\"large_mobile_title_fs\";s:0:\"\";s:21:\"large_mobile_title_lh\";s:0:\"\";s:28:\"page_subtitle_letter_spacing\";s:0:\"\";s:28:\"page_subtitle_text_transform\";s:0:\"\";s:33:\"button_disable_responsive_padding\";s:2:\"no\";s:31:\"qode_back_to_top_icon_pack_kiko\";s:0:\"\";s:41:\"qode_back_to_top_icon_pack_font_awesome_5\";s:0:\"\";s:19:\"sq_text_font_family\";s:2:\"-1\";s:17:\"sq_text_font_size\";s:0:\"\";s:19:\"sq_text_font_weight\";s:0:\"\";s:19:\"sq_text_line_height\";s:0:\"\";s:18:\"sq_text_font_style\";s:0:\"\";s:22:\"sq_text_text_transform\";s:0:\"\";s:22:\"sq_text_letter_spacing\";s:0:\"\";s:13:\"sq_text_color\";s:0:\"\";s:21:\"sq_author_font_family\";s:2:\"-1\";s:19:\"sq_author_font_size\";s:0:\"\";s:21:\"sq_author_font_weight\";s:0:\"\";s:21:\"sq_author_line_height\";s:0:\"\";s:20:\"sq_author_font_style\";s:0:\"\";s:24:\"sq_author_text_transform\";s:0:\"\";s:24:\"sq_author_letter_spacing\";s:0:\"\";s:15:\"sq_author_color\";s:0:\"\";s:22:\"video_box_border_width\";s:0:\"\";s:22:\"video_box_border_color\";s:0:\"\";s:28:\"video_box_border_hover_color\";s:0:\"\";s:22:\"video_box_height_width\";s:0:\"\";}','yes'),(219,'wpb_js_composer_license_activation_notified','yes','yes'),(220,'_elementor_installed_time','1616102651','yes');
INSERT INTO `wpgb_options` VALUES (221,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:3:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:14:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:5:\"Ebook\";i:3;s:9:\"eCommerce\";i:4;s:9:\"Education\";i:5;s:6:\"Events\";i:6;s:18:\"Health and Fitness\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:878:{i:0;a:15:{s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:207;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:15:{s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:15:{s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:295;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:15:{s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:151;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:15:{s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:15:{s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:15:{s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:597;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:15:{s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:233;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:15:{s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:689;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:15:{s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:326;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:15:{s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:393;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:15:{s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:525;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:15:{s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:636;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:15:{s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:258;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:15:{s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:15:{s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:15:{s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:15:{s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:353;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:15:{s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:298;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:15:{s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:722;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:15:{s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:618;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:15:{s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:382;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:15:{s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:629;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:15:{s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:15:{s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:15:{s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:485;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:15:{s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:356;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:15:{s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:494;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:15:{s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:456;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:15:{s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:722;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:15:{s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:440;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:15:{s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:676;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:15:{s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:384;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:15:{s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:477;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:15:{s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:282;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:15:{s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:589;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:15:{s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:660;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:15:{s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:738;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:15:{s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:694;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:15:{s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:442;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:15:{s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:475;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:15:{s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:15:{s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:572;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:15:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:664;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:15:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:668;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:15:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:615;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:15:{s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:15:{s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:15:{s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:15:{s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:15:{s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:15:{s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:15:{s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:15:{s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:15:{s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:15:{s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:15:{s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:603;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:15:{s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:460;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:15:{s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:705;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:15:{s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:658;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:15:{s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:15:{s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:571;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:15:{s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:527;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:15:{s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:538;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:15:{s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:691;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:15:{s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:436;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:15:{s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:15:{s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:760;s:11:\"trend_index\";i:781;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:15:{s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:15:{s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:70;a:15:{s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:742;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:15:{s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:669;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:15:{s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:751;s:11:\"trend_index\";i:838;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:15:{s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:769;s:11:\"trend_index\";i:684;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:15:{s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:15:{s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:757;s:11:\"trend_index\";i:700;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:15:{s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:627;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:15:{s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:591;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:15:{s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:772;s:11:\"trend_index\";i:817;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:15:{s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:792;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:15:{s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:15:{s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:15:{s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:717;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:15:{s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:15:{s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:764;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:15:{s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:632;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:15:{s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:758;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:15:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1490707391;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:1;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:88;a:15:{s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:720;s:11:\"trend_index\";i:823;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:15:{s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:90;a:15:{s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:15:{s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:604;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:15:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";i:1470829872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:2;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:93;a:15:{s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:94;a:15:{s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:15:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";i:1477388340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:3;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:96;a:15:{s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:729;s:11:\"trend_index\";i:802;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:15:{s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:15:{s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:15:{s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:15:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";i:1470826567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:4;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:101;a:15:{s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:15:{s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:15:{s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:765;s:11:\"trend_index\";i:840;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:15:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";i:1470829879;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:5;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:105;a:15:{s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:15:{s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:15:{s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:15:{s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:666;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:15:{s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:15:{s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:15:{s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:15:{s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:15:{s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:15:{s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:15:{s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:15:{s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:15:{s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:398;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:15:{s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:119;a:15:{s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:15:{s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:15:{s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:15:{s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:123;a:15:{s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:124;a:15:{s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:125;a:15:{s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:15:{s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:15:{s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:128;a:15:{s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:129;a:15:{s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:15:{s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:131;a:15:{s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:132;a:15:{s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:15:{s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"medical\",\"Online Service\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:134;a:15:{s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:135;a:15:{s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:136;a:15:{s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:15:{s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:15:{s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:139;a:15:{s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:15:{s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:15:{s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:752;s:11:\"trend_index\";i:813;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:15:{s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:143;a:15:{s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:144;a:15:{s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:145;a:15:{s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:15:{s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:15:{s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:148;a:15:{s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:503;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:15:{s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"dance studio\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:15:{s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:729;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:15:{s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:15:{s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:153;a:15:{s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:15:{s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:659;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:15:{s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:15:{s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:157;a:15:{s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:15:{s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:159;a:15:{s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:417;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:15:{s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:161;a:15:{s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:15:{s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:15:{s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:164;a:15:{s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:165;a:15:{s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:166;a:15:{s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:167;a:15:{s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:15:{s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:169;a:15:{s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:15:{s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:15:{s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:15:{s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:173;a:15:{s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:15:{s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:175;a:15:{s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:176;a:15:{s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:807;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:15:{s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:784;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:15:{s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:179;a:15:{s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:180;a:15:{s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:15:{s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:182;a:15:{s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:15:{s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:184;a:15:{s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:185;a:15:{s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:15:{s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:15:{s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:15:{s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:513;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:189;a:15:{s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:190;a:15:{s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:15:{s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:15:{s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:15:{s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:761;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:15:{s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:15:{s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:15:{s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:15:{s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:15:{s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"moving\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:15:{s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:15:{s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:15:{s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:15:{s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:15:{s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:15:{s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:607;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:15:{s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:15:{s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:15:{s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:15:{s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:837;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:15:{s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:15:{s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:15:{s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:15:{s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"interior design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:15:{s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:15:{s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:15:{s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:782;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:15:{s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"stylist\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:217;a:15:{s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:15:{s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:219;a:15:{s:2:\"id\";i:18449;s:5:\"title\";s:46:\"Aesthetic Clinic &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:220;a:15:{s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:15:{s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:15:{s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:223;a:15:{s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:15:{s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:15:{s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"online shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:226;a:15:{s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:15:{s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:15:{s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:15:{s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"footer\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:15:{s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:231;a:15:{s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:788;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:15:{s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:15:{s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:15:{s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:15:{s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:15:{s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:15:{s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:238;a:15:{s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty salon\",\"hair\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:15:{s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:15:{s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:15:{s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:648;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:15:{s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"Footer\",\"hair\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:243;a:15:{s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:15:{s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:245;a:15:{s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty salon\",\"hair\",\"Header\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:15:{s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:15:{s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:248;a:15:{s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:15:{s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:250;a:15:{s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:15:{s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:15:{s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:15:{s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:15:{s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:255;a:15:{s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:15:{s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:15:{s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:258;a:15:{s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:15:{s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:260;a:15:{s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:15:{s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:15:{s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:15:{s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:15:{s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:15:{s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:266;a:15:{s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:15:{s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:15:{s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:269;a:15:{s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:755;s:11:\"trend_index\";i:760;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:15:{s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:753;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:15:{s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:15:{s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:15:{s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:15:{s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:774;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:15:{s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:276;a:15:{s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:15:{s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:278;a:15:{s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:619;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:15:{s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:280;a:15:{s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:281;a:15:{s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:282;a:15:{s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:283;a:15:{s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:284;a:15:{s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:15:{s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:781;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:286;a:15:{s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:15:{s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:15:{s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:15:{s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:290;a:15:{s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:291;a:15:{s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:771;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:15:{s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:293;a:15:{s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:15:{s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:15:{s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:15:{s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:15:{s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:15:{s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:15:{s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:719;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:15:{s:2:\"id\";i:16192;s:5:\"title\";s:30:\"Management App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1607866881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:33:\"[\"App\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:827;s:11:\"trend_index\";i:765;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:301;a:15:{s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:15:{s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:303;a:15:{s:2:\"id\";i:15839;s:5:\"title\";s:29:\"Chiropractor &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1607855449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Business\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:828;s:11:\"trend_index\";i:709;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:15:{s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:439;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:15:{s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:306;a:15:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:307;a:15:{s:2:\"id\";i:15827;s:5:\"title\";s:32:\"Creative Agency &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1607855280;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:168:\"[\"Agency\",\"bootstrap\",\"Business\",\"corporate\",\"Landing Pages\",\"Marketing Campaign\",\"Marketing Landing Page\",\"Product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:748;s:11:\"trend_index\";i:363;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:15:{s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:309;a:15:{s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:15:{s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:15:{s:2:\"id\";i:16120;s:5:\"title\";s:37:\"Life coach Tom &#8211; Online Service\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1607865812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:30:\"[\"Consulting\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:818;s:11:\"trend_index\";i:796;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:15:{s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:15:{s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:743;s:11:\"trend_index\";i:713;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:15:{s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:315;a:15:{s:2:\"id\";i:16059;s:5:\"title\";s:34:\"Melbourne Conference &#8211; Event\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1607864236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:841;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:15:{s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:15:{s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:574;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:15:{s:2:\"id\";i:16073;s:5:\"title\";s:56:\"International Women&#8217;s Day Conference &#8211; Event\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1607864979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:865;s:11:\"trend_index\";i:789;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:15:{s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:320;a:15:{s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:15:{s:2:\"id\";i:16085;s:5:\"title\";s:29:\"Tech Conference &#8211; Event\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1607865227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:851;s:11:\"trend_index\";i:747;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:15:{s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:560;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:15:{s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:15:{s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:325;a:15:{s:2:\"id\";i:16102;s:5:\"title\";s:38:\"Environmental Conference &#8211; Event\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1607865473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:833;s:11:\"trend_index\";i:772;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:15:{s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:327;a:15:{s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:15:{s:2:\"id\";i:15931;s:5:\"title\";s:37:\"Tokyo Design Conference &#8211; Event\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1607861271;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:815;s:11:\"trend_index\";i:644;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:329;a:15:{s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:776;s:11:\"trend_index\";i:804;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:15:{s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:15:{s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:15:{s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:333;a:15:{s:2:\"id\";i:16412;s:5:\"title\";s:36:\"Photography Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1607869919;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:52:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:862;s:11:\"trend_index\";i:749;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:15:{s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:335;a:15:{s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:808;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:15:{s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:779;s:11:\"trend_index\";i:792;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:15:{s:2:\"id\";i:16183;s:5:\"title\";s:32:\"Luxury Homes &#8211; Real Estate\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1607866726;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:835;s:11:\"trend_index\";i:768;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:15:{s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:15:{s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:15:{s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:341;a:15:{s:2:\"id\";i:16420;s:5:\"title\";s:36:\"Spring Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1607899243;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Coupon\",\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:852;s:11:\"trend_index\";i:756;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:15:{s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:15:{s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:793;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:344;a:15:{s:2:\"id\";i:16427;s:5:\"title\";s:34:\"Dream Car Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1607934325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:53:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Offer\",\"Sale\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:863;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:15:{s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:15:{s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:347;a:15:{s:2:\"id\";i:16433;s:5:\"title\";s:42:\"Leshnik Mega Sale Coupon &#8211; eCommerce\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1607934474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:45:\"[\"Coupon\",\"Ecommerce\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:867;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:15:{s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:15:{s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:15:{s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:752;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:351;a:15:{s:2:\"id\";i:15986;s:5:\"title\";s:40:\"From Freelance to Business &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1607862915;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:143:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"Landing Pages\",\"Marketing\",\"Product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:837;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:15:{s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:15:{s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:354;a:15:{s:2:\"id\";i:16002;s:5:\"title\";s:30:\"Architect Manual &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1607863075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:836;s:11:\"trend_index\";i:827;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:15:{s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:356;a:15:{s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:357;a:15:{s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:728;s:11:\"trend_index\";i:728;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:15:{s:2:\"id\";i:16014;s:5:\"title\";s:23:\"Good Life &#8211; Ebook\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1607863305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:5:\"Ebook\";s:4:\"tags\";s:25:\"[\"Ebook\",\"Landing Pages\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:807;s:11:\"trend_index\";i:646;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:15:{s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:360;a:15:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1532949924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:7;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:15:{s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:598;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:15:{s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:746;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:363;a:15:{s:2:\"id\";i:16242;s:5:\"title\";s:37:\"Fashion Season Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1607867761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Fashion\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:813;s:11:\"trend_index\";i:746;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:364;a:15:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1494352119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:360;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:15:{s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:366;a:15:{s:2:\"id\";i:16202;s:5:\"title\";s:39:\"Starlight Nation Festival &#8211; Event\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1607867113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:25:\"[\"Event\",\"Landing Pages\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:842;s:11:\"trend_index\";i:770;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:15:{s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:368;a:15:{s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:369;a:15:{s:2:\"id\";i:16139;s:5:\"title\";s:37:\"Financial Consultant &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1607866334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:40:\"[\"Consulting\",\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:824;s:11:\"trend_index\";i:798;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:370;a:15:{s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:15:{s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:15:{s:2:\"id\";i:15822;s:5:\"title\";s:30:\"Family Vacation &#8211; Travel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1607855143;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:773;s:11:\"trend_index\";i:593;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:15:{s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:15:{s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:375;a:15:{s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:766;s:11:\"trend_index\";i:820;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:15:{s:2:\"id\";i:15964;s:5:\"title\";s:31:\"Law Convention &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607862731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:36:\"[\"Convention\",\"Landing Pages\",\"Law\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:860;s:11:\"trend_index\";i:794;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:15:{s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:726;s:11:\"trend_index\";i:810;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:378;a:15:{s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:15:{s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:380;a:15:{s:2:\"id\";i:15910;s:5:\"title\";s:38:\"Litigation Law Office &#8211; Business\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1607860827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:32:\"[\"Landing Pages\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:825;s:11:\"trend_index\";i:719;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:15:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1494352112;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:367;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:15:{s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:383;a:15:{s:2:\"id\";i:16025;s:5:\"title\";s:33:\"Conoco Mobile App &#8211; Product\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1607863511;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:789;s:11:\"trend_index\";i:698;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:384;a:15:{s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:385;a:15:{s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:15:{s:2:\"id\";i:15853;s:5:\"title\";s:29:\"Me Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1607857451;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:811;s:11:\"trend_index\";i:704;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:15:{s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:388;a:15:{s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:15:{s:2:\"id\";i:15844;s:5:\"title\";s:32:\"Torel Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1607856863;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:822;s:11:\"trend_index\";i:812;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:15:{s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:391;a:15:{s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:15:{s:2:\"id\";i:16041;s:5:\"title\";s:31:\"Nano Mobile App &#8211; Product\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1607863992;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:847;s:11:\"trend_index\";i:723;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:15:{s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:775;s:11:\"trend_index\";i:824;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:15:{s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:15:{s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:396;a:15:{s:2:\"id\";i:15890;s:5:\"title\";s:39:\"Personal Trainer &#8211; Online Service\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1607860512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:35:\"[\"Fitness\",\"Landing Pages\",\"Sport\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:838;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:15:{s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:15:{s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:399;a:15:{s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:400;a:15:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1494352113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:191;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:15:{s:2:\"id\";i:16233;s:5:\"title\";s:36:\"Journey Photography &#8211; Business\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1607867416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:42:\"[\"Business\",\"Landing Pages\",\"Photography\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:788;s:11:\"trend_index\";i:594;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:402;a:15:{s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:727;s:11:\"trend_index\";i:662;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:15:{s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:404;a:15:{s:2:\"id\";i:16162;s:5:\"title\";s:29:\"Private Chef &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1607866578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:24:\"[\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:855;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:15:{s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:406;a:15:{s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:15:{s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:745;s:11:\"trend_index\";i:831;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:15:{s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:559;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:15:{s:2:\"id\";i:16325;s:5:\"title\";s:28:\"Quality Lens &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1607868782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:27:\"[\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:804;s:11:\"trend_index\";i:621;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:410;a:15:{s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:411;a:15:{s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:15:{s:2:\"id\";i:16332;s:5:\"title\";s:31:\"Luxury Flat &#8211; Real Estate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1607868929;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:38:\"[\"flat\",\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:809;s:11:\"trend_index\";i:707;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:413;a:15:{s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:15:{s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:415;a:15:{s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1607869068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:791;s:11:\"trend_index\";i:696;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:416;a:15:{s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:417;a:15:{s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:15:{s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:721;s:11:\"trend_index\";i:814;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:15:{s:2:\"id\";i:16358;s:5:\"title\";s:41:\"Sunset Valley Project &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1607869234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:846;s:11:\"trend_index\";i:743;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:15:{s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:421;a:15:{s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:15:{s:2:\"id\";i:16379;s:5:\"title\";s:33:\"Property Page &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1607869379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:42:\"[\"Landing Pages\",\"Property\",\"Real estate\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:864;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:15:{s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:424;a:15:{s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:15:{s:2:\"id\";i:16392;s:5:\"title\";s:30:\"Open House &#8211; Real Estate\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1607869551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:150:\"[\"Agent\",\"Business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"Landing Pages\",\"listing\",\"modern\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:839;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:15:{s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:15:{s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:15:{s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:758;s:11:\"trend_index\";i:815;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:15:{s:2:\"id\";i:15950;s:5:\"title\";s:30:\"Stylist &#8211; Online Service\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1607862286;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:162:\"[\"cosmetics\",\"Fashion\",\"girly\",\"hairdresser\",\"Landing Pages\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"Products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:853;s:11:\"trend_index\";i:805;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:15:{s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:15:{s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:432;a:15:{s:2:\"id\";i:16253;s:5:\"title\";s:33:\"Bicycle Adventures &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1607867944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:36:\"[\"Bicycle\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:785;s:11:\"trend_index\";i:524;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:433;a:15:{s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:15:{s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:15:{s:2:\"id\";i:16271;s:5:\"title\";s:42:\"Luxury Travel Destinations  &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1607868120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:830;s:11:\"trend_index\";i:833;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:15:{s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:15:{s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:438;a:15:{s:2:\"id\";i:16283;s:5:\"title\";s:29:\"Vacation Deals &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1607868279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:850;s:11:\"trend_index\";i:799;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:15:{s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:15:{s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:15:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";i:1477388808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:62;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:442;a:15:{s:2:\"id\";i:16299;s:5:\"title\";s:29:\"New Adventures &#8211; Travel\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1607868454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:50:\"[\"Adventures\",\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:849;s:11:\"trend_index\";i:830;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:443;a:15:{s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:15:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1477388357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:136;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:445;a:15:{s:2:\"id\";i:16312;s:5:\"title\";s:26:\"Summer Time &#8211; Travel\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1607868625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:37:\"[\"Landing Pages\",\"Travel\",\"Vacation\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:829;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:15:{s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:15:{s:2:\"id\";i:15870;s:5:\"title\";s:32:\"Tel Aviv Vacation &#8211; Travel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1607860195;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:802;s:11:\"trend_index\";i:688;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:448;a:15:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1494352061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:394;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:449;a:15:{s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:450;a:15:{s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:839;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:451;a:15:{s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:15:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1494352069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:271;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:15:{s:2:\"id\";i:16440;s:5:\"title\";s:31:\"Marketing Webinar &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1607934662;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:37:\"[\"Event\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:794;s:11:\"trend_index\";i:762;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:454;a:15:{s:2:\"id\";i:16212;s:5:\"title\";s:33:\"Wedding Celebration &#8211; Event\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1607867299;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:35:\"[\"Event\",\"Landing Pages\",\"Wedding\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:798;s:11:\"trend_index\";i:730;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:455;a:15:{s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:456;a:15:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1542811219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:325;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:457;a:15:{s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:740;s:11:\"trend_index\";i:801;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:15:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1494352071;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:512;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:15:{s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:460;a:15:{s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:15:{s:2:\"id\";i:11948;s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";i:1572153978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:259;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:462;a:15:{s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:463;a:15:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";i:1485269691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:400;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:15:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";i:1485269737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:425;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:15:{s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:15:{s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:701;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:15:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";i:1485269710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:435;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:15:{s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:469;a:15:{s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"dance studio\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:470;a:15:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";i:1485269743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:200;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:471;a:15:{s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"dance studio\",\"footer\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:15:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";i:1506441447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:257;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:15:{s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"dance studio\",\"header\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:15:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";i:1513513193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:637;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:15:{s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:725;s:11:\"trend_index\";i:725;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:15:{s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:477;a:15:{s:2:\"id\";i:11966;s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";i:1572154274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:595;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:15:{s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:479;a:15:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";i:1513513171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:342;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:15:{s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:415;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:481;a:15:{s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:15:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";i:1513513137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:219;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:15:{s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:15:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";i:1542901234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:472;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:15:{s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:15:{s:2:\"id\";i:11973;s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";i:1572154523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:476;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:15:{s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:488;a:15:{s:2:\"id\";i:11981;s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";i:1572155125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:390;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:15:{s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:490;a:15:{s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:491;a:15:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";i:1470829868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:16;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:492;a:15:{s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:493;a:15:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";i:1485273092;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:414;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:15:{s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:495;a:15:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";i:1506441452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:286;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:15:{s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:497;a:15:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";i:1477388365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:79;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:498;a:15:{s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:499;a:15:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";i:1512054116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:407;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:15:{s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:15:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";i:1499774132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:530;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:15:{s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:503;a:15:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";i:1488805928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:437;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:15:{s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:15:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";i:1509615049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:215;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:506;a:15:{s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:15:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";i:1485269993;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:790;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:508;a:15:{s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:509;a:15:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";i:1506441428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:499;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:15:{s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:15:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";i:1496822325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:320;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:512;a:15:{s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:15:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";i:1499772989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:19;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:15:{s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:15:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";i:1496822319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:771;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:516;a:15:{s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:15:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";i:1496822323;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:835;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:518;a:15:{s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:15:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";i:1496822317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:576;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:520;a:15:{s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:15:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";i:1496822321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:610;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:522;a:15:{s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:15:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509633883;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:300;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:524;a:15:{s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:15:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";i:1499774125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:699;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:526;a:15:{s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:15:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";i:1499774130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:461;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:528;a:15:{s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:15:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";i:1488810874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:36;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:530;a:15:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";i:1470820447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:141;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:15:{s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:15:{s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:15:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";i:1470829785;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:182;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:534;a:15:{s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"footer\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:535;a:15:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";i:1470820463;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:74;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:536;a:15:{s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"header\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:537;a:15:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";i:1470829766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:65;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:15:{s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:539;a:15:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509615440;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:504;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:540;a:15:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:625;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:541;a:15:{s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:542;a:15:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1494352121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:516;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:15:{s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:15:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1494352124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:466;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:15:{s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:15:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1494352125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:422;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:15:{s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:15:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1488810873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:158;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:549;a:15:{s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:15:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1494352110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:547;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:551;a:15:{s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:552;a:15:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1485270062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:651;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:553;a:15:{s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:554;a:15:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1494352129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:464;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:555;a:15:{s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:556;a:15:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1494352127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:693;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:557;a:15:{s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:558;a:15:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1494352131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:657;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:559;a:15:{s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:560;a:15:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1494352066;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:397;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:561;a:15:{s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:562;a:15:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1494352064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:406;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:563;a:15:{s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:564;a:15:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1494352068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:549;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:565;a:15:{s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:566;a:15:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1488810866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:715;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:567;a:15:{s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:568;a:15:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1485273430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:614;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:569;a:15:{s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:570;a:15:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1481549290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:748;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:571;a:15:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1477388484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:355;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:15:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1490707385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:196;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:573;a:15:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1481549264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:480;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:15:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1470820715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:107;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:575;a:15:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1494352115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:491;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:15:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1494352116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:690;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:15:{s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:15:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1494352118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:404;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:15:{s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:15:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:584;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:15:{s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:15:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1470820765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:242;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:583;a:15:{s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:15:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1470825711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:366;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:585;a:15:{s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:15:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1490707422;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:245;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:587;a:15:{s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:15:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1494352106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:462;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:15:{s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:15:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1494352107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:670;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:15:{s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:15:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1494352109;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:444;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:15:{s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:15:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1494352133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:687;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:15:{s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:15:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1494352134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:774;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:15:{s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:15:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1494352136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:785;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:15:{s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:15:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1494352138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:737;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:15:{s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:15:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1470820734;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:388;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:603;a:15:{s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:15:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";i:1499774122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:678;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:15:{s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:15:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";i:1470829828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:210;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:607;a:15:{s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:15:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";i:1470829796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:370;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:609;a:15:{s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:15:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";i:1499774127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:247;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:611;a:15:{s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:15:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";i:1470820471;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:354;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:613;a:15:{s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:614;a:15:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";i:1470248619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:24;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:615;a:15:{s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:616;a:15:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";i:1470829889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:89;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:617;a:15:{s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:15:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";i:1481549196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:733;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:619;a:15:{s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:620;a:15:{s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:621;a:15:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";i:1470829892;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:338;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:622;a:15:{s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:15:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";i:1470829865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:51;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:15:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";i:1481549320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:529;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:15:{s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:15:{s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:15:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";i:1499774119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:545;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:15:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";i:1485272966;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:416;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:15:{s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:630;a:15:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";i:1485272900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:534;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:15:{s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:15:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";i:1485272513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:418;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:15:{s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:634;a:15:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";i:1470829876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:276;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:635;a:15:{s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:15:{s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:637;a:15:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";i:1488810871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:174;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:638;a:15:{s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:639;a:15:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";i:1488810869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:27;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:640;a:15:{s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:15:{s:2:\"id\";i:1245;s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";i:1491207184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:252;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:15:{s:2:\"id\";i:1247;s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";i:1491207138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:48;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:643;a:15:{s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:15:{s:2:\"id\";i:1248;s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";i:1491207050;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:601;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:15:{s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:15:{s:2:\"id\";i:1249;s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";i:1491207380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:638;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:15:{s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:15:{s:2:\"id\";i:1250;s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";i:1491207450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:104;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:649;a:15:{s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:15:{s:2:\"id\";i:1260;s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";i:1491207507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:623;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:15:{s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:15:{s:2:\"id\";i:1261;s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";i:1491207584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:164;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:653;a:15:{s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:15:{s:2:\"id\";i:1272;s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";i:1491207674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:317;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:15:{s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:15:{s:2:\"id\";i:1279;s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";i:1491207756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:403;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:657;a:15:{s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:15:{s:2:\"id\";i:1745;s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";i:1494849745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:371;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:15:{s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:15:{s:2:\"id\";i:1742;s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";i:1494849744;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:616;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:15:{s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:15:{s:2:\"id\";i:1748;s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";i:1494849742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:306;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:15:{s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:15:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";i:1516284821;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:61;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:15:{s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:15:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";i:1516284829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:543;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:15:{s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:15:{s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:15:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";i:1516284839;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:528;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:15:{s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:15:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";i:1516284847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:588;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:15:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";i:1508161124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:612;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:15:{s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:15:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";i:1508161129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:683;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:15:{s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"footer\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:676;a:15:{s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:15:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";i:1508161134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:15:{s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:15:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";i:1508243317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:383;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:15:{s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:15:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";i:1508243335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:443;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:682;a:15:{s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:683;a:15:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";i:1481549169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:446;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:684;a:15:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";i:1508325849;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:311;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:685;a:15:{s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:15:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";i:1508325881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:448;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:15:{s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:15:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";i:1508325922;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:473;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:689;a:15:{s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:690;a:15:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";i:1509621053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:254;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:691;a:15:{s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:15:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";i:1509631820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:573;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:15:{s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:15:{s:2:\"id\";i:3153;s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";i:1508950132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:775;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:15:{s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:15:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";i:1511203351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:786;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:15:{s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:229;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:15:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";i:1511203636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:836;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:15:{s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:230;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:15:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";i:1511203246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:680;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:15:{s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:15:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";i:1511203713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:592;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:15:{s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:15:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";i:1513877937;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:834;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:15:{s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:233;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:15:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";i:1514197794;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:622;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:15:{s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:234;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:15:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";i:1514198234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:708;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:15:{s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:15:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";i:1514204382;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:469;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:15:{s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";i:236;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:15:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";i:1514206745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:518;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:15:{s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:15:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";i:1514205420;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:682;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:715;a:15:{s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:238;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:716;a:15:{s:2:\"id\";i:420;s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";i:1475067229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:160;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:15:{s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:718;a:15:{s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:719;a:15:{s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:241;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:720;a:15:{s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:242;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:721;a:15:{s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:722;a:15:{s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:723;a:15:{s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:245;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:724;a:15:{s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:725;a:15:{s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:726;a:15:{s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:727;a:15:{s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:249;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:728;a:15:{s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:729;a:15:{s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:730;a:15:{s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:252;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:15:{s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:732;a:15:{s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:254;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:733;a:15:{s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:734;a:15:{s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:256;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:735;a:15:{s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:736;a:15:{s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:258;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:737;a:15:{s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:259;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:738;a:15:{s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:739;a:15:{s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:740;a:15:{s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:262;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:15:{s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:263;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:15:{s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:15:{s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:744;a:15:{s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:266;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:745;a:15:{s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:746;a:15:{s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:268;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:15:{s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:15:{s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:270;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:15:{s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:15:{s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:272;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:751;a:15:{s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:752;a:15:{s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:753;a:15:{s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:275;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:15:{s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:755;a:15:{s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:15:{s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:278;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:757;a:15:{s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:15:{s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:759;a:15:{s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:15:{s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:761;a:15:{s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:762;a:15:{s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:284;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:763;a:15:{s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:285;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:764;a:15:{s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:15:{s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:15:{s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:288;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:767;a:15:{s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:289;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:15:{s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:15:{s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:770;a:15:{s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:771;a:15:{s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:293;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:772;a:15:{s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:15:{s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:295;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:774;a:15:{s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:15:{s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:15:{s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:298;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:15:{s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:778;a:15:{s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:300;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:15:{s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:301;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:15:{s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:15:{s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:15:{s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:304;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:15:{s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:784;a:15:{s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:306;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:15:{s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:307;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:15:{s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:15:{s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:309;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:15:{s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:15:{s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:15:{s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";i:312;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:791;a:15:{s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:313;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:792;a:15:{s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:15:{s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:315;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:794;a:15:{s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:15:{s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:15:{s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:318;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:797;a:15:{s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:319;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:15:{s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:15:{s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:15:{s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:322;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:801;a:15:{s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:802;a:15:{s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:324;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:803;a:15:{s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:15:{s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:805;a:15:{s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:327;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:15:{s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:15:{s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:808;a:15:{s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:330;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:809;a:15:{s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:15:{s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:332;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:811;a:15:{s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:333;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:812;a:15:{s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:334;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:813;a:15:{s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:335;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:814;a:15:{s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:336;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:815;a:15:{s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:337;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:816;a:15:{s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:817;a:15:{s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:339;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:818;a:15:{s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:819;a:15:{s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:341;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:15:{s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:15:{s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:343;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:822;a:15:{s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:823;a:15:{s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:345;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:824;a:15:{s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:825;a:15:{s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:347;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:826;a:15:{s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";i:348;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:827;a:15:{s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:828;a:15:{s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:350;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:829;a:15:{s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:830;a:15:{s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:831;a:15:{s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:353;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:832;a:15:{s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:833;a:15:{s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:355;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:834;a:15:{s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:835;a:15:{s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:357;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:836;a:15:{s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:837;a:15:{s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:359;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:838;a:15:{s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:839;a:15:{s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:361;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:840;a:15:{s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:841;a:15:{s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:363;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:842;a:15:{s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:364;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:843;a:15:{s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:844;a:15:{s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:366;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:845;a:15:{s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:846;a:15:{s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:368;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:847;a:15:{s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:848;a:15:{s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:370;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:849;a:15:{s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:850;a:15:{s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:851;a:15:{s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:373;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:852;a:15:{s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:374;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:853;a:15:{s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:854;a:15:{s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:855;a:15:{s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:377;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:856;a:15:{s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:378;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:857;a:15:{s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:858;a:15:{s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:859;a:15:{s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:381;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:860;a:15:{s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:382;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:861;a:15:{s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:862;a:15:{s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:863;a:15:{s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:385;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:864;a:15:{s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:865;a:15:{s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:387;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:866;a:15:{s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:388;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:867;a:15:{s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:868;a:15:{s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:390;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:869;a:15:{s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:870;a:15:{s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:392;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:871;a:15:{s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:872;a:15:{s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:394;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:873;a:15:{s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:874;a:15:{s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:875;a:15:{s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:397;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:876;a:15:{s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:877;a:15:{s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:399;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(222,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:55:\"What Is Material Design? Definition, Uses, and Examples\";s:7:\"excerpt\";s:147:\"Material Design is the standard for designing and creating websites and apps. Discover why and learn how to use it to make a user-friendly website.\";s:7:\"created\";i:1612263675;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/what-is-material-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:53:\"Elementor SEO: How To Optimize Your Elementor Website\";s:7:\"excerpt\";s:154:\"SEO is crucial to the success of any website, but to many users, it still remains a mystery. Discover what SEO is and how to use it to optimize your site.\";s:7:\"created\";i:1611838485;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:113:\"https://elementor.com/blog/elementor-seo/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.1: Experiments, Performance Enhancements, And a New Landing Page Workflow\";s:7:\"excerpt\";s:162:\"The new Elementor version 3.1 features performance improvements, a new Landing Page area and workflow to manage your marketing pages, and exploratory experiments.\";s:7:\"created\";i:1611665700;s:5:\"badge\";s:11:\"New Feature\";s:3:\"url\";s:125:\"https://elementor.com/blog/introducing-elementor-3-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:33:\"How To Redirect URLs in WordPress\";s:7:\"excerpt\";s:152:\"Redirecting visitors from one page to another is an important part of website maintenance. Explore all the reasons for redirects and how to create them.\";s:7:\"created\";i:1611143960;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/redirect-url-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Create the Perfect Favicon\";s:7:\"excerpt\";s:140:\"Favicons are an integral part of building up your brand and a recognizable website. Understand what they are, and how to use them correctly.\";s:7:\"created\";i:1610975844;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/favicon-complete-guide/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(225,'bridge_purchase_info','a:3:{s:10:\"secret_key\";s:32:\"d4a7feb065deffbbf77e96d571c2ca62\";s:7:\"item_id\";i:7315054;s:13:\"purchase_code\";s:36:\"bc80555c-35e8-4171-a2ea-39899d0934de\";}','yes'),(226,'bridge_import_params','a:2:{s:6:\"submit\";s:16:\"import-demo-data\";s:3:\"url\";s:23:\"http://export.qode.com/\";}','yes'),(232,'layerslider_update_info','O:8:\"stdClass\":6:{s:5:\"basic\";O:8:\"stdClass\":13:{s:4:\"slug\";s:11:\"LayerSlider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:7:\"version\";s:6:\"6.11.8\";s:8:\"released\";s:10:\"2021-04-19\";s:5:\"icons\";a:3:{s:2:\"1x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png?ver=6.9.2\";s:2:\"2x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";s:7:\"default\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";}s:7:\"banners\";a:3:{s:3:\"low\";s:94:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png?ver=6.9.2\";s:4:\"high\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";s:7:\"default\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";}s:3:\"url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:7:\"package\";s:0:\"\";s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:5:\"5.3.0\";s:14:\"upgrade_notice\";s:56:\"This update contains general improvements and bug fixes.\";s:11:\"new_version\";s:6:\"6.11.8\";}s:4:\"full\";O:8:\"stdClass\":21:{s:4:\"name\";s:14:\"LayerSlider WP\";s:8:\"homepage\";s:72:\"http://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/\";s:5:\"p_url\";s:46:\"https://layerslider.kreaturamedia.com/pricing/\";s:7:\"version\";s:6:\"6.11.8\";s:12:\"last_updated\";s:10:\"2021-04-19\";s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:5:\"5.3.0\";s:6:\"rating\";s:2:\"95\";s:11:\"num_ratings\";i:3192;s:14:\"upgrade_notice\";a:3:{s:6:\"stable\";s:56:\"This update contains general improvements and bug fixes.\";s:4:\"beta\";s:56:\"This update contains general improvements and bug fixes.\";s:4:\"edge\";s:56:\"This update contains general improvements and bug fixes.\";}s:6:\"author\";s:71:\"<a href=\"https://kreaturamedia.com/\" target=\"_blank\">Kreatura Media</a>\";s:3:\"url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:8:\"external\";b:1;s:9:\"file_name\";s:10:\"plugin.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png?ver=6.9.2\";s:2:\"2x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";s:7:\"default\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";}s:7:\"banners\";a:3:{s:3:\"low\";s:94:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png?ver=6.9.2\";s:4:\"high\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";s:7:\"default\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";}s:8:\"sections\";a:3:{s:9:\"changelog\";s:343:\"<p style=\"text-align: justify;\">\n	<a href=\"https://layerslider.kreaturamedia.com/release-log/\" target=\"_blank\">Click here to see the release log.</a> Don’t forget, the release log and all product-related news are also integrated right into LayerSlider. Look for the “LayerSlider News” section at the bottom of its main admin screen.\n</p>\";s:12:\"installation\";s:563:\"<p style=\"text-align: justify;\">\n	Updating the plugin won’t touch your sliders or settings. New versions always have backward compatibility. You don’t have to worry about losing your work. Not sure how to update? Check the <a href=\"https://layerslider.kreaturamedia.com/documentation/#updating\" target=\"_blank\">Updating</a> section of our online documentation.\n</p>\n\n<p style=\"text-align: justify;\">\n	If you’re experiencing unwanted changes, it is always a good idea to check your settings since there are probably new options to control those changes.\n</p>\";s:3:\"faq\";s:607:\"<p style=\"text-align: justify;\">\n	Please visit our <a href=\"https://layerslider.kreaturamedia.com/help/\" target=\"_blank\">Help</a> page, where you can find all sorts of useful assets like <a href=\"https://layerslider.kreaturamedia.com/faq/\" target=\"_blank\">FAQs</a>, <a href=\"https://layerslider.kreaturamedia.com/documentation/\" target=\"_blank\">online documentation</a>, <a href=\"https://layerslider.kreaturamedia.com/documentation/#troubleshooting\" target=\"_blank\">troubleshooting</a>, and <a href=\"https://layerslider.kreaturamedia.com/documentation/#support\" target=\"_blank\">support</a> information.\n</p>\";}s:4:\"slug\";s:11:\"LayerSlider\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";}s:15:\"_latest_version\";s:6:\"6.11.8\";s:14:\"_notifications\";a:0:{}s:14:\"_not_activated\";b:1;s:7:\"checked\";i:1620898300;}','yes'),(235,'wpcf7','a:2:{s:7:\"version\";s:3:\"5.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1616102829;s:7:\"version\";s:3:\"5.4\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(301,'category_children','a:0:{}','yes'),(302,'elementor_library_category_children','a:0:{}','yes'),(303,'portfolio_category_children','a:0:{}','yes'),(304,'testimonials_category_children','a:0:{}','yes'),(306,'carousels_category_children','a:0:{}','yes'),(307,'masonry_gallery_category_children','a:0:{}','yes'),(309,'rs_image_meta_todo','a:5:{i:278;s:117:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider//home-slider-image-31.png\";i:279;s:117:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider//home-slider-image-21.png\";i:280;s:117:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider//home-slider-image-11.png\";i:281;s:117:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider//home-slider-image-11.jpg\";i:282;s:117:\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider//home-slider-image-21.jpg\";}','yes'),(310,'elementor_active_kit','283','yes'),(330,'ls-latest-version','6.11.8','yes'),(331,'ls-p-url','https://layerslider.kreaturamedia.com/pricing/','yes'),(363,'_transient_health-check-site-status-result','{\"good\":\"14\",\"recommended\":\"5\",\"critical\":\"1\"}','yes'),(376,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(377,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(378,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(380,'wpb_js_google_fonts_subsets','a:1:{i:0;s:5:\"latin\";}','yes'),(381,'wpb_js_gutenberg_disable','1','yes'),(382,'wpb_js_default_template_post_type','a:0:{}','yes'),(407,'site_pin_enable','1','no'),(408,'site_pin_code','2021','no'),(409,'site_pin_message','','no'),(639,'sbi_statuses','a:2:{s:8:\"database\";a:1:{s:14:\"hashtag_column\";b:1;}s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}}','yes'),(640,'widget_instagram-feed-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(641,'sbi_usage_tracking_config','a:6:{s:3:\"day\";i:3;s:4:\"hour\";i:16;s:6:\"minute\";i:14;s:6:\"second\";i:4;s:6:\"offset\";i:317644;s:8:\"initsend\";i:1618416844;}','yes'),(642,'sbi_db_version','1.9','yes'),(643,'sb_instagram_errors','a:8:{s:10:\"connection\";a:0:{}s:7:\"hashtag\";a:0:{}s:8:\"resizing\";a:0:{}s:15:\"database_create\";a:0:{}s:10:\"upload_dir\";a:0:{}s:8:\"accounts\";a:0:{}s:9:\"error_log\";a:0:{}s:10:\"action_log\";a:1:{i:0;s:41:\"04-08 13:45:47 - Retesting GDPR features.\";}}','no'),(645,'sbi_notifications','a:4:{s:6:\"update\";i:1620900847;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(646,'sbi_welcome_seen','1','yes'),(647,'sbi_license_data','a:13:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";b:0;s:9:\"item_name\";s:27:\"Instagram Feed Pro Business\";s:8:\"checksum\";s:32:\"06148d20905b4e5dedf96bff3925f7fd\";s:7:\"expires\";s:19:\"2021-07-16 23:59:59\";s:10:\"payment_id\";i:831000;s:13:\"customer_name\";s:11:\"Cat Rawlins\";s:14:\"customer_email\";s:27:\"cat@partridgecreative.co.uk\";s:13:\"license_limit\";i:5;s:10:\"site_count\";i:3;s:16:\"activations_left\";i:2;s:8:\"price_id\";s:1:\"3\";}','yes'),(648,'sbi_license_status','valid','yes'),(649,'sbi_license_key','ae7576279a5720254b56cfff2010390a','yes'),(652,'sbi_check_license_api_when_expires','true','yes'),(653,'sb_instagram_settings','a:120:{s:15:\"sb_instagram_at\";s:0:\"\";s:17:\"sb_instagram_type\";s:4:\"user\";s:18:\"sb_instagram_order\";s:3:\"top\";s:20:\"sb_instagram_user_id\";s:0:\"\";s:23:\"sb_instagram_tagged_ids\";s:0:\"\";s:20:\"sb_instagram_hashtag\";s:0:\"\";s:28:\"sb_instagram_type_self_likes\";s:0:\"\";s:21:\"sb_instagram_location\";s:0:\"\";s:24:\"sb_instagram_coordinates\";s:0:\"\";s:30:\"sb_instagram_preserve_settings\";s:0:\"\";s:23:\"sb_instagram_ajax_theme\";b:0;s:4:\"gdpr\";s:4:\"auto\";s:18:\"enqueue_js_in_head\";b:0;s:24:\"disable_js_image_loading\";b:0;s:27:\"sb_instagram_disable_resize\";b:0;s:24:\"sb_instagram_favor_local\";b:1;s:23:\"sb_instagram_cache_time\";s:1:\"1\";s:28:\"sb_instagram_cache_time_unit\";s:5:\"hours\";s:16:\"sbi_caching_type\";s:4:\"page\";s:23:\"sbi_cache_cron_interval\";s:7:\"12hours\";s:19:\"sbi_cache_cron_time\";s:1:\"1\";s:20:\"sbi_cache_cron_am_pm\";s:2:\"am\";s:18:\"sb_instagram_width\";s:3:\"100\";s:23:\"sb_instagram_width_unit\";s:1:\"%\";s:28:\"sb_instagram_feed_width_resp\";b:0;s:19:\"sb_instagram_height\";s:0:\"\";s:16:\"sb_instagram_num\";s:2:\"20\";s:22:\"sb_instagram_nummobile\";s:0:\"\";s:24:\"sb_instagram_height_unit\";s:0:\"\";s:17:\"sb_instagram_cols\";s:1:\"4\";s:23:\"sb_instagram_colsmobile\";s:4:\"auto\";s:26:\"sb_instagram_image_padding\";s:1:\"5\";s:31:\"sb_instagram_image_padding_unit\";s:2:\"px\";s:24:\"sb_instagram_layout_type\";s:4:\"grid\";s:27:\"sb_instagram_highlight_type\";s:7:\"pattern\";s:29:\"sb_instagram_highlight_offset\";i:0;s:29:\"sb_instagram_highlight_factor\";i:6;s:26:\"sb_instagram_highlight_ids\";s:0:\"\";s:30:\"sb_instagram_highlight_hashtag\";s:0:\"\";s:19:\"sb_hover_background\";s:0:\"\";s:13:\"sb_hover_text\";s:0:\"\";s:22:\"sbi_hover_inc_username\";b:1;s:18:\"sbi_hover_inc_icon\";b:1;s:18:\"sbi_hover_inc_date\";b:1;s:23:\"sbi_hover_inc_instagram\";b:1;s:22:\"sbi_hover_inc_location\";b:0;s:21:\"sbi_hover_inc_caption\";b:0;s:19:\"sbi_hover_inc_likes\";b:0;s:17:\"sb_instagram_sort\";s:4:\"none\";s:29:\"sb_instagram_disable_lightbox\";b:0;s:25:\"sb_instagram_captionlinks\";b:0;s:19:\"sb_instagram_offset\";i:0;s:23:\"sb_instagram_background\";s:0:\"\";s:21:\"sb_instagram_show_btn\";b:1;s:27:\"sb_instagram_btn_background\";s:0:\"\";s:27:\"sb_instagram_btn_text_color\";s:0:\"\";s:21:\"sb_instagram_btn_text\";s:9:\"Load More\";s:22:\"sb_instagram_image_res\";s:4:\"auto\";s:23:\"sb_instagram_media_type\";s:3:\"all\";s:10:\"videotypes\";s:12:\"regular,igtv\";s:28:\"sb_instagram_moderation_mode\";s:6:\"manual\";s:24:\"sb_instagram_hide_photos\";s:0:\"\";s:24:\"sb_instagram_block_users\";s:0:\"\";s:24:\"sb_instagram_ex_apply_to\";s:3:\"all\";s:25:\"sb_instagram_inc_apply_to\";s:3:\"all\";s:23:\"sb_instagram_show_users\";s:0:\"\";s:26:\"sb_instagram_exclude_words\";s:0:\"\";s:26:\"sb_instagram_include_words\";s:0:\"\";s:25:\"sb_instagram_show_caption\";b:1;s:27:\"sb_instagram_caption_length\";s:2:\"50\";s:26:\"sb_instagram_caption_color\";s:0:\"\";s:25:\"sb_instagram_caption_size\";s:2:\"13\";s:30:\"sb_instagram_lightbox_comments\";b:1;s:25:\"sb_instagram_num_comments\";s:2:\"20\";s:22:\"sb_instagram_show_meta\";b:1;s:23:\"sb_instagram_meta_color\";s:0:\"\";s:22:\"sb_instagram_meta_size\";s:2:\"13\";s:24:\"sb_instagram_show_header\";b:1;s:25:\"sb_instagram_header_color\";s:0:\"\";s:25:\"sb_instagram_header_style\";s:8:\"standard\";s:27:\"sb_instagram_show_followers\";b:1;s:21:\"sb_instagram_show_bio\";b:1;s:23:\"sb_instagram_custom_bio\";s:0:\"\";s:26:\"sb_instagram_custom_avatar\";s:0:\"\";s:33:\"sb_instagram_header_primary_color\";s:6:\"517fa4\";s:35:\"sb_instagram_header_secondary_color\";s:6:\"eeeeee\";s:24:\"sb_instagram_header_size\";s:5:\"small\";s:31:\"sb_instagram_outside_scrollable\";b:0;s:20:\"sb_instagram_stories\";b:1;s:25:\"sb_instagram_stories_time\";i:5000;s:28:\"sb_instagram_show_follow_btn\";b:1;s:33:\"sb_instagram_folow_btn_background\";s:0:\"\";s:34:\"sb_instagram_follow_btn_text_color\";s:0:\"\";s:28:\"sb_instagram_follow_btn_text\";s:19:\"Follow on Instagram\";s:23:\"sb_instagram_autoscroll\";b:0;s:31:\"sb_instagram_autoscrolldistance\";i:200;s:23:\"sb_instagram_custom_css\";s:0:\"\";s:22:\"sb_instagram_custom_js\";s:0:\"\";s:25:\"sb_instagram_requests_max\";s:1:\"5\";s:19:\"sb_instagram_minnum\";s:1:\"0\";s:17:\"sb_instagram_cron\";s:5:\"unset\";s:25:\"sb_instagram_disable_font\";b:0;s:19:\"sb_instagram_backup\";b:1;s:15:\"sb_ajax_initial\";b:0;s:24:\"enqueue_css_in_shortcode\";b:0;s:30:\"sb_instagram_disable_mob_swipe\";b:0;s:13:\"sbi_br_adjust\";b:1;s:23:\"sb_instagram_media_vine\";b:0;s:15:\"custom_template\";b:0;s:20:\"disable_admin_notice\";b:0;s:19:\"enable_email_report\";s:2:\"on\";s:18:\"email_notification\";s:6:\"monday\";s:28:\"email_notification_addresses\";s:27:\"cat@partridgecreative.co.uk\";s:21:\"sb_instagram_carousel\";b:0;s:26:\"sb_instagram_carousel_rows\";i:1;s:26:\"sb_instagram_carousel_loop\";s:6:\"rewind\";s:28:\"sb_instagram_carousel_arrows\";b:0;s:25:\"sb_instagram_carousel_pag\";b:1;s:30:\"sb_instagram_carousel_autoplay\";b:0;s:30:\"sb_instagram_carousel_interval\";s:4:\"5000\";}','yes'),(657,'edd_sl_fd3b3be8ac21569716623ed5cb5f916e','a:2:{s:7:\"timeout\";i:1620776249;s:5:\"value\";s:170765:\"{\"new_version\":\"5.12.1\",\"stable_version\":\"5.12.1\",\"name\":\"Instagram Feed Pro Business\",\"slug\":\"instagram-feed\",\"url\":\"https:\\/\\/smashballoon.com\\/extensions\\/instagram-feed-pro-business\\/?changelog=1\",\"last_updated\":\"2021-05-07 13:17:27\",\"homepage\":\"http:\\/\\/smashballoon.com\\/instagram-feed\",\"package\":\"https:\\/\\/smashballoon.com\\/edd-sl\\/package_download\\/NTIyMDc0MDI0OTphZTc1NzYyNzlhNTcyMDI1NGI1NmNmZmYyMDEwMzkwYTozMzc0ODphMDJjNDc2NWFkYWViYzk5YjQ0OTMyYWQ3MmVjODUwYzpodHRwc0AvL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51azow\",\"download_link\":\"https:\\/\\/smashballoon.com\\/edd-sl\\/package_download\\/NTIyMDc0MDI0OTphZTc1NzYyNzlhNTcyMDI1NGI1NmNmZmYyMDEwMzkwYTozMzc0ODphMDJjNDc2NWFkYWViYzk5YjQ0OTMyYWQ3MmVjODUwYzpodHRwc0AvL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51azow\",\"sections\":{\"description\":\"<p>Display Instagram photos from any non-private Instagram accounts, either in the same single feed or in multiple different ones.<\\/p>\\n<h4> Features <\\/h4>\\n<ul>\\n<li>Super <strong>simple to set up<\\/strong><\\/li>\\n<li>Completely <strong>responsive<\\/strong> and mobile ready - layout looks great on any screen size and in any container width<\\/li>\\n<li><strong>Completely customizable<\\/strong> - Customize the width, height, number of photos, number of columns, image size, background color, image spacing, text styling, likes &amp; comments and more!<\\/li>\\n<li>Display <strong>multiple Instagram feeds<\\/strong> on the same page or on different pages throughout your site<\\/li>\\n<li><strong>GDPR Compliance<\\/strong> - automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting.<\\/li>\\n<li>Use the built-in <strong>shortcode options<\\/strong> to completely customize each of your Instagram feeds<\\/li>\\n<li>Display thumbnail, medium or <strong>full-size photos<\\/strong> from your Instagram feed<\\/li>\\n<li><strong>Infinitely load more<\\/strong> of your Instagram photos with the \'Load More\' button<\\/li>\\n<li>View photos in a pop-up <strong>lightbox<\\/strong><\\/li>\\n<li>Display photos by User ID or hashtag<\\/li>\\n<li>Display photo captions, likes and comments<\\/li>\\n<li>Use your own Custom CSS or JavaScript<\\/li>\\n<\\/ul>\\n<h4> Benefits <\\/h4>\\n<ul>\\n<li>Increase your Instagram followers by displaying your Instagram content on your website<\\/li>\\n<li>Save time and increase efficiency by only posting your photos to Instagram and automatically displaying them on your website<\\/li>\\n<\\/ul>\",\"changelog\":\"<h4> 5.12.1 <\\/h4>\\n<ul>\\n<li>Fix: Updated the Instagram authorization URL to prevent issues with connecting personal accounts<\\/li>\\n<\\/ul>\\n<h4> 5.12 <\\/h4>\\n<ul>\\n<li>New: Added support for IGTV posts. When creating an IGTV post, keep the &quot;Post a Preview&quot; setting enabled and the IGTV post will appear in your feed. IGTV posts are only available for connected Instagram business profiles and aren\'t available if you\'re using a personal Instagram profile in the plugin.<\\/li>\\n<li>Fix: Fixed a PHP error when the HTTP request to refresh an access token resulted in an error.<\\/li>\\n<\\/ul>\\n<h4> 5.11.2 <\\/h4>\\n<ul>\\n<li>Fix: Changed how access tokens are retrieved to prevent conflict with the &quot;Rank Math SEO&quot; plugin when connecting an account.<\\/li>\\n<li>Fix: Spaces in the comma separated &quot;hoverdisplay&quot; shortcode setting would cause some of the values not to work.<\\/li>\\n<li>Fix: Updated jQuery methods for compatibility with WordPress 5.7.<\\/li>\\n<li>Fix: If all posts in a feed were blocked via the filter settings then an unfiltered backup feed would incorrectly be displayed.<\\/li>\\n<\\/ul>\\n<h4> 5.11.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed PHP warning &quot;array_diff(): Expected parameter 1 to be an array, string given&quot;.<\\/li>\\n<li>Fix: Fixed PHP warning &quot;Invalid argument supplied for foreach()&quot; when using a recent hashtag in a feed.<\\/li>\\n<li>Fix: Request to retrieve &quot;top&quot; posts for recent hashtag posts was not always made the first time the feed loaded.<\\/li>\\n<li>Fix: Fixed issue where account errors were not being removed after an account was deleted or reconnected.<\\/li>\\n<\\/ul>\\n<h4> 5.11 <\\/h4>\\n<ul>\\n<li>New: The locations of the Instagram feeds on your site will now be logged and listed on a single page for easier management. After this feature has been active for awhile, a &quot;Feed Finder&quot; link will appear next to the Feed Type setting on the plugin Settings page which allows you to see a list of all feeds on your site along with their locations.<\\/li>\\n<li>New: Local resized images will now include a 150x150 resolution version for each post.<\\/li>\\n<li>Tweak: Locally saved image quality set to 80% to increase feed performance without a noticeable visual difference.<\\/li>\\n<li>Tweak: Improved how posts are sorted by date when there are more than one user account or hashtag in a feed.<\\/li>\\n<li>Tweak: For hashtag feeds, a specific account for retrieving hashtag posts can be used by adding user=&quot;USERNAME&quot; in the shortcode.<\\/li>\\n<li>Fix: Mixed feeds that included &quot;tagged&quot; posts would always display the tagged posts last in the feed.<\\/li>\\n<li>Fix: Old accounts from Instagram\'s deprecated, non-functioning API are ignored if still connected.<\\/li>\\n<\\/ul>\\n<h4> 5.10 <\\/h4>\\n<ul>\\n<li>Tweak: Several performance improvements have been made in this update such as improved caching and fewer database queries when displaying feeds.<\\/li>\\n<li>Tweak: The limit of resized, local images created and stored were raised for the overall number and the rate at which they could be created.<\\/li>\\n<li>Tweak: Improvements made to hashtag feeds including the ability to display a feed of multiple hashtags even if one has not yet had any posts made to it.<\\/li>\\n<li>Tweak: Improved how feed errors are handled and reported. API request delays will only apply to feeds encountering errors and will not affect other feeds.<\\/li>\\n<li>Tweak: Added hook for disabling image resizing dynamically with PHP.<\\/li>\\n<li>Fix: PHP Warning &quot;required parameter follows optional parameter&quot; that would display when using PHP 8+.<\\/li>\\n<li>Fix: GDPR feature was reporting errors when the feature was working fine.<\\/li>\\n<li>Fix: When using a hashtag feed and the first image in a carousel post was a video, the image would not always display properly.<\\/li>\\n<li>Fix: When using background caching and a hashtag feed, duplicate posts would appear in the feed.<\\/li>\\n<\\/ul>\\n<h4> 5.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: If the image resizing feature isn\'t able to work successfully due to an issue, then the GDPR setting will be disabled unless manually enabled to prevent blank images in the feed.<\\/li>\\n<li>Fix: In some situations the GDPR setting was incorrectly reporting an error with image resizing.<\\/li>\\n<\\/ul>\\n<h4> 5.9 <\\/h4>\\n<ul>\\n<li>New: Integrations with popular GDPR cookie consent solutions added. Visit the Instagram Feed settings page, Customize tab, Advanced section for more information.<\\/li>\\n<li>Tweak: Icon font support was discontinued. Only SVGs will be used for icons in feeds.<\\/li>\\n<li>Fix: oEmbeds were not always working in much older versions of WordPress.<\\/li>\\n<\\/ul>\\n<h4> 5.8.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added PHP filter &quot;sbi_flags&quot; to make changes to JavaScript flags.<\\/li>\\n<li>Tweak: Added a check in the JavaScript flags for &quot;disableOnTouch&quot; to disable the code that allows the lightbox to be opened without tapping the images twice on touch devices.<\\/li>\\n<li>Fix: If there was an oEmbed error while visiting the Support tab, the System Info would be blank.<\\/li>\\n<li>Fix: API error notices would not be removed from the WordPress dashboard after successfully reconnecting an account when the problem was resolved.<\\/li>\\n<li>Fix: Fixed PHP Error that would occur when connecting a personal account that would result in an HTTP error.<\\/li>\\n<\\/ul>\\n<h4> 5.8.4 <\\/h4>\\n<ul>\\n<li>Fix: Added more debugging info to the System Info for oEmbeds.<\\/li>\\n<li>Fix: Added a workaround for a rare issue where oEmbed access tokens wouldn\'t save.<\\/li>\\n<li>Fix: Carousel posts would not show images when using the &quot;Disable JS Image Loading&quot; setting and image resizing was disabled.<\\/li>\\n<li>Fix: Hashtag posts were not showing up in a mixed feed that included a hashtag where the hashtag had not been used in another feed previously.<\\/li>\\n<\\/ul>\\n<h4> 5.8.3 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue caused by an unannounced Instagram API change affecting thumbnails in certain video posts if the image resizing feature in the plugin was disabled.<\\/li>\\n<li>Fix: Added oEmbed account info to the plugin &quot;System Info&quot; to make debugging easier.<\\/li>\\n<\\/ul>\\n<h4> 5.8.2 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with an Instagram API change causing some images not to display if the image resizing feature was disabled.<\\/li>\\n<\\/ul>\\n<h4> 5.8.1 <\\/h4>\\n<ul>\\n<li>Tweak: Minor update to footer.php template<\\/li>\\n<li>Tweak: Added support for improved notices on the plugin settings page.<\\/li>\\n<li>Fix: JavaScript error when using keyboard navigation of lightbox when switching from a video post to an image post.<\\/li>\\n<li>Fix: 7-day, 30 hashtag limit for hashtag feeds notices were not displaying on the front-end of the site to logged-in admins if it was also causing no posts to display.<\\/li>\\n<li>Fix: Added aria-hidden=&quot;true&quot; attribute to loader icon and role=&quot;carousel&quot; to the HTML for carousel layouts for better accessibility.<\\/li>\\n<\\/ul>\\n<h4> 5.8 <\\/h4>\\n<ul>\\n<li>New: Added support for Instagram oEmbeds. When you share a link to a Instagram post, WordPress automatically converts it into an embedded Instagram post for you (an &quot;oEmbed&quot;). However, on October 24, 2020, WordPress is discontinuing support for Instagram oEmbeds and so any existing or new embeds will no longer work. Don\'t worry though, we have your back! This update adds support for Instagram oEmbeds and so, after updating, the Instagram Feed plugin will automatically keep your oEmbeds working. It will also power any new oEmbeds you post going forward.<\\/li>\\n<li>Tweak: Background caching and favoring local images are now the default settings for new installs.<\\/li>\\n<\\/ul>\\n<h4> 5.7.1 <\\/h4>\\n<ul>\\n<li>Important: Due to recent Instagram changes, private accounts will need to be manually refreshed every 60 days. If you have a private Instagram account, consider making it public to avoid needing to manually reconnect your account.<\\/li>\\n<li>New: Added a notice for accounts that are private which lets you know how long until the account needs to be refreshed. You will also be alerted using our admin notice and email notification system if a private account will soon need to be refreshed.<\\/li>\\n<li>Tweak: If the main image file for a post is not able to load in the lightbox, a backup image file is used.<\\/li>\\n<li>Fix: Recent hashtag feeds were not showing posts from the &quot;top&quot; hashtag endpoint the first time the feed was displayed.<\\/li>\\n<\\/ul>\\n<h4> 5.7 <\\/h4>\\n<ul>\\n<li>New: Added compatibility with our new <a href=\\\"http:\\/\\/smashballoon.com\\/social-wall\\/?utm_source=plugin-pro&amp;utm_campaign=sbi&amp;utm_medium=readme\\\">Social Wall<\\/a> plugin, which allows you to combine feeds from Instagram, Facebook, Twitter, and YouTube into one social media &quot;wall&quot;. If you are using our Smash Balloon All-Access Bundle then the Social Wall plugin is included at no additional cost. Just log into your account to download and install the plugin.<\\/li>\\n<li>Tweak: Changed the names of the CSS and JavaScript files to prevent certain ad blockers from hiding the feed. Original file names still included in this update.<\\/li>\\n<li>Fix: Mixed feeds would not show multiple hashtags.<\\/li>\\n<li>Fix: Added a workaround for an issue caused by lazy-loading plugins which sometimes resulted in blank images in the feed.<\\/li>\\n<li>Fix: Hashtags feeds with multiple hashtags would not be sorted by date.<\\/li>\\n<li>Fix: Fixed inability to connect accounts when using a short viewport and having a lot of accounts available to connect.<\\/li>\\n<li>Fix: Clicking on the &quot;Play&quot; icon for video posts would not open the lightbox.<\\/li>\\n<\\/ul>\\n<h4> 5.6.4 <\\/h4>\\n<ul>\\n<li>Tweak: Headers for &quot;tagged&quot; feeds now show the avatar and bio text for the connected account that is being &quot;tagged&quot; in the posts.<\\/li>\\n<li>Fix: Compatibility updates for WordPress 5.5.<\\/li>\\n<\\/ul>\\n<h4> 5.6.3 <\\/h4>\\n<ul>\\n<li>New: Added a PHP hook &quot;sbi_posted_on_date&quot; to allow you to use custom date formats for posts in the feed.<\\/li>\\n<li>New: Added a PHP hook &quot;sbi_clear_page_caches&quot; which allows you to dynamically disable the Instagram Feed code that clears caches created by common page caching plugins.<\\/li>\\n<li>New: Added a PHP hook &quot;sbi_resize_url&quot; which allows you to change the default URL of locally stored images. This can be helpful for sites using CDNs.<\\/li>\\n<li>Tweak: When displaying a &quot;Mixed&quot; feed (a feed that combines multiple feed types into one) the plugin now show posts in chronological order instead of alternating posts.<\\/li>\\n<li>Tweak: Added a workaround for the wp_json_encode function used in older versions of WordPress.<\\/li>\\n<li>Fix: When displaying feeds which contain multiple recent hashtag feeds combined into one, the plugin now show posts in chronological order.<\\/li>\\n<li>Fix: Added a workaround for themes which add extra HTML elements into the content of the feed and cause layout problems.<\\/li>\\n<li>Fix: Fixed an issue with the carousel not displaying properly when a theme uses right-to-left text direction.<\\/li>\\n<li>Fix: Made the text for the &quot;Share&quot; link translatable.<\\/li>\\n<\\/ul>\\n<h4> 5.6.2 <\\/h4>\\n<ul>\\n<li>Fix: Accounts can be connected without the use of JavaScript.<\\/li>\\n<li>Fix: Default URL for connecting an account changed to prevent &quot;Invalid Scope&quot; connection issue.<\\/li>\\n<\\/ul>\\n<h4> 5.6.1 <\\/h4>\\n<ul>\\n<li>Fix: Workaround added for PHP warning related to an undefined media_url index.<\\/li>\\n<li>Fix: Connecting a business account on a mobile device when more than 2 pages where returned was not possible.<\\/li>\\n<li>Fix: After connecting an account, the warning that there were no connected accounts would still be visible.<\\/li>\\n<li>Fix: URL for retrieving image files from Instagram using a redirect method was changed to prevent an extra, unnecessary redirect.<\\/li>\\n<\\/ul>\\n<h4> 5.6 <\\/h4>\\n<ul>\\n<li>New: Added setting to sort posts by number of likes. Posts from connected business accounts can be sorted by the number of likes. Up to the latest 200 posts from the feed can be included.<\\/li>\\n<li>New: Added setting to offset the first post in the feed. Add offset=(number of posts) to your shortcode to skip posts before starting the feed.<\\/li>\\n<li>New: Date the post was published can now be displayed in hashtag feeds (only for posts collected after this update).<\\/li>\\n<li>New: To help us improve the plugin we have added usage tracking so that we can understand what features and settings are being used, and which features matter to you the most. The plugin will send a report in the background once per week with your plugin settings and basic information about your website environment. No personal or sensitive data is collected (such as email addresses, Instagram account information, license keys, etc). You can opt-out by simply disabling the setting at: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Enable Usage Tracking. See <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-feed\\/usage-tracking\\/\\\">here<\\/a> for more information.<\\/li>\\n<li>New: Some older posts can be included in the feed when first creating a recent hashtag feed. Previously only posts made within the last 24 hours would be included.<\\/li>\\n<li>Tweak: Added PHP filter sbi_license_page_output for changing what displays on the License tab. You can use <a href=\\\"https:\\/\\/smashballoon.com\\/how-can-i-hide-my-license-key-on-the-license-page\\/\\\">this guide<\\/a> for an example on how you can hide your license key.<\\/li>\\n<li>Tweak: &quot;@mentions&quot; were not being detected using the includewords and excludewords filters.<\\/li>\\n<li>Tweak: Added additional checks to make sure the HTTP protocol matches when using resized image URLs from the uploads folder.<\\/li>\\n<li>Tweak: If a post is on both a white list and the block list, it will be included in the related white list feed. Previously it was blocked.<\\/li>\\n<li>Tweak: More information is given when there is an account connection error when connecting an account on the &quot;Configure&quot; page.<\\/li>\\n<li>Tweak: Connecting a business account will permanently remove any accounts from the same user that are from the legacy Instagram API that is expiring in June.<\\/li>\\n<li>Fix: Added a workaround for sanitize_textarea_field for users using an older version of WordPress.<\\/li>\\n<li>Fix: When the lightbox was disabled, clicking the &quot;play&quot; icon for video posts would do nothing.<\\/li>\\n<li>Fix: Fixed HTML error causing the manually connect an account feature to not work.<\\/li>\\n<li>Fix: Access token and account ID are validated and formatted before trying to manually connect an account to prevent errors.<\\/li>\\n<\\/ul>\\n<h4> 5.5.1 <\\/h4>\\n<ul>\\n<li>Fix: API Error #2 was not clearing properly in error reports.<\\/li>\\n<li>Fix: PHP warning &quot;undefined variable account_found&quot;.<\\/li>\\n<li>Tweak: User feeds that do not have a user name or ID assigned to them will automatically use the first connected account for the feed.<\\/li>\\n<li>Tweak: rel=&quot;nofollow&quot; added to all external Instagram Feed links found in the source of the page.<\\/li>\\n<li>Tweak: For carousel feeds, if the number of photos is less than or equal to the number of columns in the feed the number of photos in the carousel is doubled.<\\/li>\\n<\\/ul>\\n<h4> 5.5 <\\/h4>\\n<ul>\\n<li>New: Email alerts for critical issues. If there\'s an issue with an Instagram feed on your website which hasn\'t been resolved yet then you\'ll receive an email notification to let you know. This is sent once per week until the issue is resolved. These emails can be disabled by using the following setting: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Feed Issue Email Report.<\\/li>\\n<li>New: Admin notifications for critical issues. If there is an error with the feed, admins will see notices in the dashboard and on the front-end of the site along with instructions on how to resolve the issue. Front-end admin notifications can be disabled by using the following setting: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Disable Admin Error Notice.<\\/li>\\n<li>New: Added a WordPress \'Site Health\' integration. If there is a critical error with your feeds, it will now be flagged in the site health page.<\\/li>\\n<li>New: Added &quot;About Us&quot; page for those who would like to learn more about Smash Balloon and our other products. Go to Instagram Feed -&gt; About Us in the dashboard.<\\/li>\\n<li>Fix: Pinterest &quot;share&quot; button found in the lightbox was not working correctly.<\\/li>\\n<\\/ul>\\n<h4> 5.4.1 <\\/h4>\\n<ul>\\n<li>Fix: Added workaround for personal account connection error and header display issue due to an Instagram API bug. After updating, click &quot;Save Changes&quot; on the Instagram Feed settings page, &quot;Configure&quot; tab to clear your cache.<\\/li>\\n<\\/ul>\\n<h4> 5.4 <\\/h4>\\n<ul>\\n<li>New: Added an \\u201cInstagram Feed\\u201d Gutenberg block to use in the block editor, allowing you to easily add a feed to posts and pages.<\\/li>\\n<li>Tweak: Custom JavaScript from the &quot;Custom JavaScript&quot; setting no longer added to the page after the document ready event but instead added on page load.<\\/li>\\n<li>Fix: Mobile swipe code will not cause an error if overwritten by another jQuery plugin\\/code snippet<\\/li>\\n<li>Fix: Several improvements and fixes for loading the feed without the JavaScript based image transitions.<\\/li>\\n<\\/ul>\\n<h4> 5.3.3 <\\/h4>\\n<ul>\\n<li>Tested with upcoming WordPress 5.4 update.<\\/li>\\n<li>Tweak: Header and follow button will still be displayed when number of posts is set to 0.<\\/li>\\n<li>Fix: Posts in &quot;tagged&quot; feeds would sometimes appear out of order.<\\/li>\\n<\\/ul>\\n<h4> 5.3.2 <\\/h4>\\n<ul>\\n<li>Fix: Error caused when clicking on an image using touch devices and having the lightbox disabled for a feed.<\\/li>\\n<li>Fix: Shoppable feeds feature was missing some URLs in captions due to shortened image alt text<\\/li>\\n<\\/ul>\\n<h4> 5.3.1 <\\/h4>\\n<ul>\\n<li>Important: March 2 deadline for migrating to the new Instagram API pushed back to March 31.<\\/li>\\n<li>Fix: Error saving updated account information caused by emoji in account bio or in account names and MySQL tables that didn\'t have a UTF8mb4 character set.<\\/li>\\n<li>Fix: Touch devices will open the lightbox on first tap.<\\/li>\\n<li>Fix: Twitter &quot;Share&quot; button link was incorrect.<\\/li>\\n<li>Fix: Some links to Instagram were missing a backslash at the end of the URL causing a 301 redirect.<\\/li>\\n<\\/ul>\\n<h4> 5.3 <\\/h4>\\n<ul>\\n<li>Important: On March 31, Instagram will stop supporting its old API which will disrupt feeds created from personal connected accounts. If you are using a personal account, you will need to reconnect the account on the Instagram Feed Settings page. Please <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-march-2-2020\\/\\\">see here<\\/a> for more information.<\\/li>\\n<li>New: Support added for the new Instagram Basic Display API.<\\/li>\\n<li>New: Added PHP hooks \'sbi_before_feed\' and \'sbi_after_feed\' for displaying HTML before and after the main Instagram feed HTML.<\\/li>\\n<li>New: Added settings for adding a custom header avatar and custom header bio text. Go to the &quot;Customize&quot; tab &quot;Header&quot; area to set these or use customavatar=&quot;AVATAR URL&quot; or custombio=&quot;BIO TEXT&quot; in the shortcode.<\\/li>\\n<li>Tweak: Warnings and messages displaying on the front end of sites now display at the top of the feed.<\\/li>\\n<li>Tweak: Header templates changed to accommodate missing data if connected as a personal account to the new API.<\\/li>\\n<li>Tweak: Changes to feed.php, header.php, header-boxed.php, and item.php templates.<\\/li>\\n<li>Tweak: Added CSS to prevent some themes from adding box shadows and bottom border when hovering over the header.<\\/li>\\n<li>Tweak: Added code to clear page caching from Litespeed cache when clearing page caches with the plugin.<\\/li>\\n<li>Fix: Emoji in the first few characters of a caption would cause the main post image to switch to an emoji when loading more.<\\/li>\\n<li>Fix: Pagination for &quot;tagged&quot; feeds not working for certain accounts.<\\/li>\\n<\\/ul>\\n<h4> 5.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Changed screen reader and alt text to be more SEO friendly (change made to item.php template).<\\/li>\\n<li>Tweak: Added PHP hooks to use custom alt and screen reader text.<\\/li>\\n<li>Fix: Screen reader text would be visible if text was right aligned.<\\/li>\\n<li>Fix: Feeds were not updating when background caching used.<\\/li>\\n<li>Fix: Incorrect image resolution would be used when setting the image resolution to something other than auto.<\\/li>\\n<\\/ul>\\n<h4> 5.2.5 <\\/h4>\\n<ul>\\n<li>New: Added a close button for the share feature in the lightbox.<\\/li>\\n<li>New: Added aria-label attributes to SVGs for improved accessibility.<\\/li>\\n<li>Tweak: Removed Google Plus as a share option.<\\/li>\\n<li>Tweak: Error reporting improved. Information about errors encountered while retrieving posts now more concise.<\\/li>\\n<li>Fix: Improved reliability of touch detection for opening the lightbox with touch devices.<\\/li>\\n<li>Fix: Minified version of CSS file was not actually minified.<\\/li>\\n<\\/ul>\\n<h4> 5.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Check added to make sure sbiOwlCarousel was defined before using to show carousel posts in the lightbox added.<\\/li>\\n<li>Tweak: Added a default set of options of sb_instagram_js_options not defined on the page.<\\/li>\\n<li>Tweak: Added a text link in the settings page footer to our new free <a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/feeds-for-youtube\\/\\\">YouTube feed<\\/a> plugin<\\/li>\\n<li>Fix: Part of the next image in the carousel would display when opening carousel posts in the lightbox on slower networks.<\\/li>\\n<li>Fix: Added a workaround for error caused by videos in stories displayed in the lightbox not having thumbnails available.<\\/li>\\n<\\/ul>\\n<h4> 5.2.3 <\\/h4>\\n<ul>\\n<li>New: Added filter &quot;sbi_settings_pages_capability&quot; to change what permission is needed to access settings pages.<\\/li>\\n<li>Tweak: Better error messages for no posts being found and API request delays.<\\/li>\\n<li>Tweak: If &quot;Favor Local Images&quot; setting is in use, a 640px resolution image will be created for images coming from a personal account.<\\/li>\\n<li>Tweak: Better error recovery when image file not found when viewing the feed.<\\/li>\\n<li>Tweak: Added &quot;noreferrer&quot; to links found in the captions in the lightbox display.<\\/li>\\n<li>Tweak: Button and input field styling updated to look better with WordPress 5.3.<\\/li>\\n<li>Tweak: Updated language files for version 2.0+.<\\/li>\\n<li>Fix: Accounts that were connected prior to version 4.0 would not show the follow button if the header was not also displayed and would not retrieve comments to display in the lightbox. Visit the &quot;Configure&quot; tab to have the account automatically updated.<\\/li>\\n<li>Fix: Fixed incorrect URL for boxed-style header &quot;follow&quot; button.<\\/li>\\n<li>Fix: Clearing &quot;white lists&quot; would not work.<\\/li>\\n<li>Fix: Duplicate posts added to recent hashtag feeds when background caching enabled.<\\/li>\\n<li>Fix: MySQL error when retrieving resized images. Thanks <a href=\\\"https:\\/\\/github.com\\/the-louie\\\">the-louie<\\/a>!<\\/li>\\n<\\/ul>\\n<h4> 5.2.2 <\\/h4>\\n<ul>\\n<li>New: Added setting &quot;API request size&quot; on the &quot;Customize&quot; tab to allow requesting of more posts than are in the feed. Setting this to a high number will prevent no posts being found if you often post IG TV posts and use a personal account.<\\/li>\\n<li>Tweak: Removed width and height attributes from the image element in the feed to prevent notices about serving scaled images in optimization tools.<\\/li>\\n<\\/ul>\\n<h4> 5.2.1 <\\/h4>\\n<ul>\\n<li>Tweak: Resized images can be used in the page source code when &quot;Disable JS Image Loading&quot; setting is enabled.<\\/li>\\n<li>Fix: Full captions would always show when using the &quot;Disable JS Image Loading&quot; setting.<\\/li>\\n<li>Fix: Using the masonry layout and the &quot;Disable JS Image Loading&quot; setting would cause a duplicate image to display on top of the post image.<\\/li>\\n<li>Fix: Using a single column for mobile devices and the &quot;Highlight&quot; layout would cause images to display larger than the feed width.<\\/li>\\n<li>Fix: Map marker would display as a font icon instead of an SVG.<\\/li>\\n<li>Fix: Raw image file opening instead of lightbox for some sites after updating to version 5.2.<\\/li>\\n<\\/ul>\\n<h4> 5.2 <\\/h4>\\n<ul>\\n<li>New: New feed type &quot;Tagged&quot;. Show posts that your account has been &quot;tagged&quot; in on Instagram. Must have a connected business account to use this feed type.<\\/li>\\n<li>New: Added the ability to overwrite default templates in your theme. View <a href=\\\"https:\\/\\/smashballoon.com\\/guide-to-creating-custom-templates\\/\\\">this article<\\/a> for more information.<\\/li>\\n<li>New: Added several PHP hooks for modifying feeds settings and functionality.<\\/li>\\n<li>Tweak: Retrieving posts from recent hashtag feeds available only in cache made more lenient to accommodate minor changes in the feed settings.<\\/li>\\n<li>Fix: Using the &quot;Load Initial Posts with AJAX&quot; setting would cause images to not resize with the browser window.<\\/li>\\n<li>Fix: Added back language files for translations.<\\/li>\\n<li>Fix: Changing the image resolution setting would not change the image size.<\\/li>\\n<li>Fix: MySQL error when retrieving resized images.<\\/li>\\n<li>Fix: Follow button would not show if there was no connected account.<\\/li>\\n<li>Fix: Deleting any connected account will delete any connected accounts that have errors in the data that was saved for them.<\\/li>\\n<li>Fix: Masonry style layout would not adjust when caption was expanded.<\\/li>\\n<li>Fix: Moderation mode would open multiple feeds when used on a page that had multiple feeds.<\\/li>\\n<li>Fix: Adding a comma at the end of a list of words used in filters would cause the filter to not work properly.<\\/li>\\n<\\/ul>\\n<h4> 5.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Background caching randomizes which feeds are updated first to help with large amounts of cached feeds.<\\/li>\\n<li>Tweak: A delay will be triggered for future API requests when the HTTP request fails or Instgram API returns errors.<\\/li>\\n<li>Tweak: Invalid access token notices will automatically clear if a successful API request is made with one.<\\/li>\\n<li>Tweak: Code bypass added if Image Liquid or visibility change detection code is not defined due to multiple jQuery versions added to the page.<\\/li>\\n<li>Fix: Hashtag feeds with multiple hashtags not alternating in certain circumstances.<\\/li>\\n<li>Fix: PHP warning for using a static method improperly.<\\/li>\\n<li>Fix: Disabling Font Awesome would leave the CSS file for it enqueued.<\\/li>\\n<li>Fix: Minified version of JavaScript file is now used when the setting labeled &quot;Are you using an ajax theme?&quot; is enabled.<\\/li>\\n<li>Fix: Cache time when using page cache method was incorrect.<\\/li>\\n<li>Fix: Images in moderation mode would not be cropped squares.<\\/li>\\n<\\/ul>\\n<h4> 5.1.1 <\\/h4>\\n<ul>\\n<li>Fix: Background caching would not work for feeds with no shortcode arguments.<\\/li>\\n<li>Fix: A second connected business account would not always be used if the first account had reached the 30 hashtag per week limit.<\\/li>\\n<li>Tweak: Cache size capped at 200 to prevent PHP memory issues.<\\/li>\\n<li>Tweak: Widget name changed back to Instagram Feed.<\\/li>\\n<\\/ul>\\n<h4> 5.1 <\\/h4>\\n<ul>\\n<li>New: Posts can be loaded initially with an AJAX call. Can help keep feed updated when page caching also used. Enable on the &quot;Customize&quot; tab, &quot;Advanced&quot; sub-tab.<\\/li>\\n<li>Tweak: Using both includewords and excludewords in a feed will cause posts that include the includeword and do not include the excludeword to be included.<\\/li>\\n<li>Tweak: Caption length limit also applies to hover caption.<\\/li>\\n<li>Tweak: Non Instagram post items can be added to the feed without causing a JavaScript error.<\\/li>\\n<li>Tweak: Duplicate posts filtered out before displaying.<\\/li>\\n<li>Tweak: Bottom margin added to header when image padding is less than 10 pixels.<\\/li>\\n<li>Fix: Javascript error caused by feed being hidden initially and then becoming visible.<\\/li>\\n<li>Fix: Settings link not appearing on Plugins page where Instagram Feed Pro was listed.<\\/li>\\n<li>Fix: Invalid HTML caused by no space between attributes in the main sbi div.<\\/li>\\n<li>Fix: Use &quot;http&quot; for svg xlmns attribute.<\\/li>\\n<li>Fix: Lazy-loading plugins would sometimes cause the feed to load blank placeholder images.<\\/li>\\n<li>Fix: &quot;Disable JS Image Loading&quot; setting would break the lightbox.<\\/li>\\n<li>Fix: Incorrect image resolution or duplicate image files loaded on the page in FireFox.<\\/li>\\n<li>Fix: Filtering feeds by hashtag can use first author comment when also using a personal Instagram account.<\\/li>\\n<li>Fix: Line breaks not always showing in captions.<\\/li>\\n<li>Fix: Improved includewords and excludewords word\\/hashtag detection.<\\/li>\\n<li>Fix: Spaces between multiple includewords\\/excludewords would cause word\\/hashtag detection problems.<\\/li>\\n<li>Fix: More escaping when outputting html.<\\/li>\\n<li>Fix: PHP function &quot;wp_json_encode&quot; used instead of &quot;json_encode&quot; where applicable.<\\/li>\\n<li>Fix: Recent hashtag feeds would sometimes retrieve the same post multiple times from the database cache.<\\/li>\\n<\\/ul>\\n<h4> 5.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Fixed error from Instagram when connecting a personal account.<\\/li>\\n<\\/ul>\\n<h4> 5.0.3 <\\/h4>\\n<ul>\\n<li>Fix: Includewords and Excludewords settings were missing some matching words\\/hashtags in captions.<\\/li>\\n<li>Fix: &quot;Favor local images&quot; setting was sometimes causing the feed to not use the best image resolution available.<\\/li>\\n<\\/ul>\\n<h4> 5.0.2 <\\/h4>\\n<ul>\\n<li>Fix: Plugin not showing that an update is available on the Plugins page.<\\/li>\\n<li>Fix: Hahstags mixing latin and non-latin characters were not always working with includewords setting.<\\/li>\\n<li>Fix: Padding around images in FireFox not working for carousel feeds.<\\/li>\\n<li>Fix: Added back support for &quot;carousel=true&quot; in shortcodes to make carousel feeds.<\\/li>\\n<li>Fix: Using &quot;showheader=false&quot; would still add an empty header to the feed.<\\/li>\\n<li>Fix: Removed line breaks from html template to prevent odd issues in certain themes.<\\/li>\\n<li>Fix: Carousel arrows would not render as SVGs even when the font style was set to SVG.<\\/li>\\n<li>Fix: Mixed feeds would sometimes stop paginating when one of the users or hashtag endpoints ran out of new posts.<\\/li>\\n<\\/ul>\\n<h4> 5.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Likes counts not working for business feeds.<\\/li>\\n<li>Fix: Video thumbnails from non-resized images were causing related video not to open and play in lightbox.<\\/li>\\n<li>Fix: Medium resolution image being used in the lightbox for personal accounts when image resizing is enabled and no full size image was created.<\\/li>\\n<li>Fix: Removed error message on front-end when custom tables for resized image data are not existing.<\\/li>\\n<li>Fix: Location data not displaying on hover when enabled and available.<\\/li>\\n<li>Fix: Enqueue CSS file in shortcode setting not working properly.<\\/li>\\n<\\/ul>\\n<h4> 5.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>New: We\'ve rebuilt the plugin from the ground up with a focus on performance and reliability. Your feeds are now loaded from the server using PHP removing the reliance on AJAX.<\\/li>\\n<li>New: Local image storing expanded to include personal accounts. Use the &quot;Favor Local Images&quot; setting on the &quot;Customize&quot; tab, &quot;Advanced&quot; sub-tab to have the plugin use local images whenever available, thus removing reliance on the Instagram CDN.<\\/li>\\n<li>New: You can now set the plugin to check for new Instagram posts in the background rather than when the page loads by using the new &quot;Background caching&quot; option which utilizes the WordPress &quot;cron&quot; feature. Enable this using the &quot;Check for new posts&quot; setting on the &quot;Configure&quot; tab.<\\/li>\\n<\\/ul>\\n<h4> 4.1.5 <\\/h4>\\n<ul>\\n<li>Tweak: Store URL switched to https to prevent update error.<\\/li>\\n<li>Tweak: Code in SB_Instagram_Connected_Accounts class removed that was causing problems for some users. Site would crash intermittently with warning about php.ini settings.<\\/li>\\n<li>Fix: PHP warning when trying to count boolean related to an empty comment cache.<\\/li>\\n<li>Fix: While viewing a video in the lightbox, the lightbox would automatically go to the next slide when it finished.<\\/li>\\n<\\/ul>\\n<h4> 4.1.4 <\\/h4>\\n<ul>\\n<li>Fix: Welcome page updated to work with CSS changes in WordPress 5.2.<\\/li>\\n<li>Fix: Using &quot;Shoppable Feeds&quot; feature would cause images to disappear when the resolution of the images were raised.<\\/li>\\n<li>Fix: Recent hashtag feeds using multiple hashtags where some hashtags did not have many posts would show an incorrect number of images in the feed.<\\/li>\\n<\\/ul>\\n<h4> 4.1.3 <\\/h4>\\n<ul>\\n<li>Fix: Added check for WordPress version 3.4 to disable image resizing features.<\\/li>\\n<li>Fix: Recent hashtag feeds would display posts out of order if they shared saved posts from user feeds.<\\/li>\\n<li>Fix: Arbitrary API call was being made for user feeds with headers.<\\/li>\\n<\\/ul>\\n<h4> 4.1.2 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue caused by a bug in the Instagram API which was preventing some Instagram accounts from being able to be connected. If you experienced an issue connecting an Instagram account using the &quot;Personal&quot; option then please try again after updating.<\\/li>\\n<\\/ul>\\n<h4> 4.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Mediavine integration JavaScript added to a separate file instead of added to the source to allow for optimization plugins to work with the code.<\\/li>\\n<li>Fix: Header would be included in the feed the first time the feed loads for business feeds even if disabled.<\\/li>\\n<\\/ul>\\n<h4> 4.1 <\\/h4>\\n<ul>\\n<li>New: Instagram stories are now supported. If a story is available for a business user account, clicking the avatar in the user feed header will display the story. Disable this on the Customize tab, header options.<\\/li>\\n<li>New: If more than one unique business account is in use (is connected to a different Facebook page), more than 30 unique hashtags can be included in feeds during a week.<\\/li>\\n<li>New: Headers can be displayed outside of the scrollable area for feeds with a specific height set. Enable this on the Customize tab, header options.<\\/li>\\n<li>New: Added capability &quot;manage_instagram_feed_options&quot; to allow non-admins to manage Instagram Feed settings pages.<\\/li>\\n<li>New: Added a setting for multi-site super admins to hide the license tab from site admins. Enable this on the Customize tab, Advanced sub-tab.<\\/li>\\n<li>New: Added a setting to enable integration with Mediavine ad networks. If you are using Mediavine, enable this on the Customize tab, Advanced sub-tab.<\\/li>\\n<li>New: Added &quot;feedid&quot; setting to explicitly set a unique key for feed caching. When used this will help prevent cache conflicts when using similar includewords for multiple feeds are used.<\\/li>\\n<li>Tweak: Scaled images of 640 pixels are saved on the site\'s server for better optimization.<\\/li>\\n<li>Tweak: Error handling for broken image links added.<\\/li>\\n<li>Tweak: SVGs given attribute role=&quot;presentation&quot; instead of role=&quot;img&quot; for better accessibility.<\\/li>\\n<li>Tweak: sbi_photo elements given and aria label and the attribute role=&quot;img&quot; for improved accessibility.<\\/li>\\n<li>Tweak: License renewal notice now only visible for admin users.<\\/li>\\n<li>Tweak: Setting to disable the &quot;Welcome&quot; page redirect available. Enable this using the link on the &quot;Welcome&quot; page.<\\/li>\\n<li>Tweak: Video element hidden when transitioning slides when viewing posts in the lightbox.<\\/li>\\n<li>Fix: Quotes in the captions of recent hashtag feeds would break the caching features.<\\/li>\\n<li>Fix: Carousel feeds not displaying correctly for right-to-left sites.<\\/li>\\n<li>Fix: Follow button was not linking to user account under certain circumstances.<\\/li>\\n<li>Fix: Forced highlight and masonry feeds to use border-box box-sizing for sbi_item elements.<\\/li>\\n<li>Fix: Removed zoom effect for moderation mode.<\\/li>\\n<li>Fix: Forced the highlight offset setting to be an integer, ensuring that some posts are higlighted when using this feature.<\\/li>\\n<li>Fix: Spaces among user names when using shortcode settings would cause the feed to break.<\\/li>\\n<li>Fix: Resizing the screen while in moderation mode and also using the &quot;Shoppable Feeds&quot; feature would cause most images to disappear.<\\/li>\\n<\\/ul>\\n<h4> 4.0.9 <\\/h4>\\n<ul>\\n<li>Fix: Unable to connect new personal accounts due to changes with Instagram\'s API. Remote requests to connect accounts are now made server-side.<\\/li>\\n<li>Fix: User feeds where the username is the same as the hashtag for a recent hashtag feed would cause posts to appear out of order and for user feed posts to be included in the feed.<\\/li>\\n<\\/ul>\\n<h4> 4.0.8 <\\/h4>\\n<ul>\\n<li>Tweak: Source of scaled images changed from server resized images to images from Instagram\'s CDN.<\\/li>\\n<li>Tweak: Maximum number of posts data saved in the custom database tables raised from 150 to 1500.<\\/li>\\n<li>Tweak: Message added to the lightbox visible to admins when a video isn\'t able to be played, usually due to Instagram copyright restrictions.<\\/li>\\n<li>Fix: Some thumbnails were not displaying for video posts in hashtag feeds.<\\/li>\\n<li>Fix: Hashtag feeds carousel posts that included videos without video files available would cause a JavaScript error.<\\/li>\\n<li>Fix: Having a different number of posts displayed for mobile devices would not work with the initial post set cache.<\\/li>\\n<\\/ul>\\n<h4> 4.0.7 <\\/h4>\\n<ul>\\n<li>Tweak: Isotope JS code namespaced to prevent conflicts with other versions of Isotope.<\\/li>\\n<li>Fix: Duplicate images would be displayed in feed when displaying a user feed that has both a personal account and business account connected.<\\/li>\\n<li>Fix: Added rel=&quot;noopener&quot; attribute to all cross-origin links.<\\/li>\\n<li>Fix: Fewer images than expected would be displayed using the initial post set cache feature when the number of posts on desktop was different than the number of posts for mobile.<\\/li>\\n<li>Fix: Double quotes in the location data and backslashes at the end of a caption would cause the initial post set feature to break.<\\/li>\\n<li>Fix: No image would display when displaying a carousel type post that contained only videos.<\\/li>\\n<li>Fix: PHP error for multisite sites when creating a new sub-site and trying to create tables.<\\/li>\\n<\\/ul>\\n<h4> 4.0.6 <\\/h4>\\n<ul>\\n<li>Fix: Hashtag feeds were not displaying for certain accounts due to an Instagram API bug. If you see the message &quot;The requested resource does not exist&quot; when trying to display a Hashtag feed, please go to the &quot;Configure&quot; tab and reconnect all of your business accounts using the blue &quot;Connect an Instagram Account&quot; button.<\\/li>\\n<li>Fix: Pop-up modal will now scroll when connecting a large amount of Business accounts on the Configure tab.<\\/li>\\n<li>Fix: &quot;Mixed&quot; feeds and feeds with multiple hashtags would not work or would display fewer posts than expected.<\\/li>\\n<li>Fix: Filtering a User feed by a hashtag or word will work better for feeds that use the hashtag or word infrequently.<\\/li>\\n<li>Fix: Feed would break when using the shoppable feeds feature with a Hashtag feed that contained a video with no thumbnail available.<\\/li>\\n<\\/ul>\\n<h4> 4.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: More information displayed when there is an error connecting business accounts on the Configure tab.<\\/li>\\n<li>Tweak: Image resizing aborted in the event that the WordPress image editor code returns an error.<\\/li>\\n<li>Fix: Feed not displaying when admin-ajax requests had space added by other plugins or themes.<\\/li>\\n<li>Fix: Double quotes in parts of the header data would cause a JSON parsing error for initial page cache feature.<\\/li>\\n<li>Fix: 404 error displaying for hammer.js code in Safari.<\\/li>\\n<\\/ul>\\n<h4> 4.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Business accounts with periods in the user names were causing the token to appear invalid<\\/li>\\n<li>Fix: Custom database tables can now be installed using a network activate for multisite installations<\\/li>\\n<\\/ul>\\n<h4> 4.0.3 <\\/h4>\\n<ul>\\n<li>Fix: &quot;Initial Post Set Cache&quot; feature would not load the feed under certain circumstances<\\/li>\\n<li>Fix: Manually connecting Business Profiles is now possible. Enter the Access Token and then the User ID in the respective fields on the &quot;Configure&quot; tab.<\\/li>\\n<\\/ul>\\n<h4> 4.0.2 <\\/h4>\\n<ul>\\n<li>Fix: Index for feed_id column was too large for certain MySQL servers\\/settings preventing the new database tables from being created<\\/li>\\n<li>Fix: Less than and greater than symbols (&quot;&lt;&quot;,&quot;&gt;&quot;) causing JSON decoding issues and preventing the initial page cache from being set<\\/li>\\n<li>Fix: Fixed error &quot;Unable to decrypt access token&quot; occurring in certain circumstances<\\/li>\\n<li>Fix: Unable to add or remove user accounts to primary feeds in Firefox<\\/li>\\n<\\/ul>\\n<h4> 4.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Using the setting &quot;Are you using an AJAX theme?&quot; was causing a JavaScript error<\\/li>\\n<li>Fix: Fixed an issue with single quotes in the initial feed JSON data<\\/li>\\n<li>Fix: Added a missing comma in the feed options array<\\/li>\\n<\\/ul>\\n<h4> 4.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>Important: On December 11, Instagram will be making some major platform changes which will disrupt Location feeds, Single Post feeds, and Hashtag feeds. Please <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-dec-11-2018\\/\\\">see here<\\/a> for more information.<\\/li>\\n<li>New: Support for connecting Instagram Business Profiles on the Configure tab. After December 11, 2018, Hashtag feeds will require a Business Profile to be connected. <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-business-profiles\\/\\\">More information<\\/a><\\/li>\\n<li>New: Hashtag feeds can now be ordered by \'Top posts\' or \'Most recent\'. This can be configured on the plugin settings page \'Hashtag\' settings, or in the shortcode: order=recent.<\\/li>\\n<li>New: When selecting \'Most recent\' Instagram will only return posts from the past 24 hours, however, the plugin will store these posts so that they can continue to be displayed indefinitely, creating a permanent feed of your posts.<\\/li>\\n<li>New: A limit of 30 unique hashtags per Business Profile can be queried per 7 day rolling period.<\\/li>\\n<li>New: Usernames and dates are no longer available for hashtag posts. <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-dec-11-2018\\/\\\">More information<\\/a><\\/li>\\n<li>New: Images which are only available in full size are downsized and stored on your server. This feature is automatically enabled for any feed which uses Instagram\'s new API, but can be disabled in the following location: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Image Resizing.<\\/li>\\n<li>New: Post data is now stored in a custom table in your database for greater flexibility in future updates.<\\/li>\\n<li>Tweak: Ajax requests are reduced in order to decrease feed load times and reduce the amount of resources used.<\\/li>\\n<\\/ul>\\n<h4> 3.0.6 <\\/h4>\\n<ul>\\n<li>Important: On December 11, Instagram will be making some major platform changes which will disrupt Location feeds, Single Post feeds, and Hashtag feeds. Please <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-dec-11-2018\\/\\\">see here<\\/a> for more information. We are working hard on a plugin update which will be released prior to December 11 and include support for the new Hashtag API, along with directions on how to transition to it in order to avoid any disruption in your Hashtag feeds.<\\/li>\\n<li>Fix: Fixed an issue with spaces in the \'includewords\' filter setting<\\/li>\\n<li>Fix: Fixed an issue with email &quot;mailto&quot; links in captions<\\/li>\\n<\\/ul>\\n<h4> 3.0.5 <\\/h4>\\n<ul>\\n<li>Fix: An &quot;Unexpected end of JSON input&quot; error was occurring on certain servers due to an issue with the name of the header cache<\\/li>\\n<li>Fix: The &quot;Moderation Type&quot; setting was not saving successfully on the settings page<\\/li>\\n<\\/ul>\\n<h4> 3.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Japanese characters in hashtags were not working with the &quot;includewords&quot; filtering setting<\\/li>\\n<li>Fix: Fixed a bug caused by the previous updated which was causing the Masonry layout to display all posts at the same height<\\/li>\\n<li>Fix: Fixed a rare issue where certain settings wouldn\'t be saved when using the &quot;Preserve settings when plugin is removed&quot; option<\\/li>\\n<li>Fix: Fixed a formatting issue in the System Info<\\/li>\\n<\\/ul>\\n<h4> 3.0.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added a setting to enqueue the JavaScript file for the plugin in the page header rather than the footer.<\\/li>\\n<li>Fix: Updating the plugin with the carousel setting enabled by default would cause the new layout settings to not be changeable.<\\/li>\\n<li>Fix: Fixed an issue where the Load More button would disappear if all posts for a feed were cached.<\\/li>\\n<\\/ul>\\n<h4> 3.0.2 <\\/h4>\\n<ul>\\n<li>Fix: PHP warning if settings on the &quot;Customize&quot; tab were never saved.<\\/li>\\n<li>Fix: Hashtags the included uppercase letters were not working with the &quot;show posts that contain these words or hashtags&quot; setting.<\\/li>\\n<li>Tweak: Updated the plugin updater class to the latest version<\\/li>\\n<\\/ul>\\n<h4> 3.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Error caused by not including the &quot;#&quot; for a mixed feed type that includes hashtags.<\\/li>\\n<li>Fix: Disabling mobile swipe code would cause an error.<\\/li>\\n<li>Fix: Using the line break caption adjustment setting with the &quot;Are you using an AJAX theme?&quot; setting would cause an error.<\\/li>\\n<\\/ul>\\n<h4> 3.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>New: Masonry layout - Display your posts in their uncropped portrait or landscape aspect ratios with no vertical space between posts.<\\/li>\\n<li>New: Highlight layout - Highlight\\/enlarge specific posts in your feed in a number of ways: based on a set pattern, using specific post IDs, or based on a specific hashtag in the caption. For example, you could set the plugin to highlight any posts which include the hashtag of #highlight.<\\/li>\\n<li>New: Additional options for carousel feeds including a 2-row layout and infinite looping.<\\/li>\\n<li>New: &quot;Mixed&quot; feed type allows you to display feeds of multiple types in a single feed. Set the username\\/hashtag\\/post ID\\/location in the shortcode with the type set to &quot;mixed&quot; e.g. [instagram-feed type=mixed hashtag=&quot;#awesomeplugins&quot; user=&quot;smashballoon&quot;].<\\/li>\\n<li>New: More customizable header layouts and sizes. You can now center the avatar and account information above your feed as well as choose from three sizes: small, medium, and large.<\\/li>\\n<li>New: We\'ve made improvements to the way photos are loaded into the feed, adding a smooth transition to display photos subtly rather than suddenly. We\'ve also made enhacements to other interactive elements - such as hovering over a photo or using the carousel - to create a more refined experience.<\\/li>\\n<li>Tweak: Settings area has been reorganized to make finding and setting your options faster and more intuitive.<\\/li>\\n<li>Tweak: &quot;includewords&quot; setting will now search through author comments to detect hashtags.<\\/li>\\n<li>Tweak: Automatic image resolution detection setting now works better with wide images. Resizing the browser will now automatically raise the image resolution if needed.<\\/li>\\n<li>Tweak: Character limit will now adjust based on the number of line breaks in the caption. This can be disabled on the &quot;Advanced&quot; tab.<\\/li>\\n<li>Fix: Hashtags containing cyrillic characters were not working with the &quot;includewords&quot; feature.<\\/li>\\n<li>Fix: Desktop touch screens were not properly detected.<\\/li>\\n<\\/ul>\\n<h4> 2.11 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an occasional issue with the Instagram login flow which would result in an &quot;Unauthorized redirect URL&quot; error<\\/li>\\n<li>Fix: Fixed an issue with the &quot;Remove&quot; button not working reliably when removing connected accounts<\\/li>\\n<li>Tweak: Added nonces to the admin settings<\\/li>\\n<\\/ul>\\n<h4> 2.10 <\\/h4>\\n<ul>\\n<li>New: Retrieving Access Tokens and connecting multiple Instagram accounts is now easier using our improved interface for managing account information. While on the Configure tab, click on the big blue button to connect an account, or use the &quot;Manually Connect an Account&quot; option to connect one using an existing Access Token. Once an account is connected, you can use the associated buttons to either add it to your primary User feed or to a different feed on your site using the <code>user<\\/code> shortcode option, eg: <code>user=smashballoon<\\/code>.<\\/li>\\n<li>Tweak: Disabled auto load in the database for backup caches and white lists<\\/li>\\n<li>Fix: Fixed a issue where comments could display potentially harmful HTML - Thanks Jonas Carlsson from Sweden!<\\/li>\\n<li>Fix: Removed code and support for using user names in user ID settings. Will now default to the user ID attached to the Access Token.<\\/li>\\n<li>Fix: Carousel feeds not working for right to left languages<\\/li>\\n<li>Fix: Comments not being retrieved with the correct Access Token<\\/li>\\n<li>Fix: Automatic loading of more posts on scroll disabled for carousel feeds<\\/li>\\n<li>Fix: Using a percent for the image padding was causing the height of images to be to tall<\\/li>\\n<\\/ul>\\n<h4> 2.9.7 <\\/h4>\\n<ul>\\n<li>Fix: Fixed and issue with new comments not being retrieved<\\/li>\\n<li>Fix: Access Tokens may have been incorrectly saved as invalid under certain circumstances<\\/li>\\n<\\/ul>\\n<h4> 2.9.6 <\\/h4>\\n<ul>\\n<li>Tweak: Setting &quot;Cache Error API Recheck&quot; enabled by default for new installs<\\/li>\\n<li>Tweak: Added back ability to show caption on the right side of the lightbox and avatars for user feeds in lightbox<\\/li>\\n<li>Fix: Page caches created with the WP Rocket plugin will be cleared when the Instagram Feed settings are updated or the cache is forced to clear<\\/li>\\n<li>Fix: Fixed a rare issue where feeds were displaying &quot;Looking for cache that doesn\'t exist&quot; when page caching was not being used<\\/li>\\n<\\/ul>\\n<h4> 2.9.5 <\\/h4>\\n<ul>\\n<li>Important: Due to <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-april-4-2018\\/\\\">recent changes<\\/a> in the Instagram API it is no longer possible to display photos from other Instagram accounts which are not your own. You can only display the user feed of the account which is associated with your Access Token.<\\/li>\\n<li>New: Added an Access Token shortcode option and support for multiple Access Tokens. If you own multiple Instagram accounts then you can now use multiple Access Tokens in order to display user feeds from each account, either in separate feeds, or in the same feed. Just use the <code>accesstoken<\\/code> shortcode option. See <a href=\\\"https:\\/\\/smashballoon.com\\/display-multiple-instagram-feeds\\/#multiple-user-feeds\\\">this FAQ<\\/a> for more information on displaying multiple User feeds.<\\/li>\\n<\\/ul>\\n<h4> 2.9.4 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue caused by the last update where the Load More button would skip some posts<\\/li>\\n<li>Fix: No source in video element in the lightbox causing an error in IE<\\/li>\\n<li>Fix: Combination of a page cache, user feed header, and setting &quot;Cache Error API Recheck&quot; causing header to not display<\\/li>\\n<li>Fix: Having more than one of the same feeds on the same page would sometimes cause the second feed not to load<\\/li>\\n<\\/ul>\\n<h4> 2.9.3 <\\/h4>\\n<ul>\\n<li>Fix: Fixed duplicating images in certain feeds<\\/li>\\n<li>Fix: Includewords code missing non-hashtag words after a line break<\\/li>\\n<\\/ul>\\n<h4> 2.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Lightbox given a fixed position for large screens. Scrolling the browser window will no longer scroll the lightbox on desktop devices.<\\/li>\\n<li>Tweak: Enabling &quot;Cache Error API Recheck&quot; setting will cause feeds to always assume a cache exists and will create one if one doesn\'t exist.<\\/li>\\n<li>Tweak: Custom image sizes no longer supported by Instagram. This feature will be unavailable for now.<\\/li>\\n<li>Fix: Added icon source setting for AJAX themes<\\/li>\\n<li>Fix: Fixed incorrectly sized images when mobile columns set to &quot;1&quot;<\\/li>\\n<li>Fix: SVG icons box-sizing set to &quot;unset&quot; to prevent issues with SVG icon sizes<\\/li>\\n<li>Fix: Hover background moved farther to the foreground to prevent rare issue with it not displaying<\\/li>\\n<li>Fix: Auto load more on scroll was causing problems for other features on sites that are triggered by scrolling<\\/li>\\n<li>Fix: Extra check added to prevent infinite loop of displaying welcome screen when installing the plugin<\\/li>\\n<li>Fix: Fixed links breaking for hashtags with underscores in the lightbox<\\/li>\\n<\\/ul>\\n<h4> 2.9.1 <\\/h4>\\n<ul>\\n<li>New: Added &quot;alt&quot; tags to lightbox images and screen reader text for improved accessibility<\\/li>\\n<li>Fix: SVG icons not displaying correctly in IE11<\\/li>\\n<li>Fix: Fixed a potential security vulnerability<\\/li>\\n<\\/ul>\\n<h4> 2.9 <\\/h4>\\n<ul>\\n<li>New: Added a permanent feed option. Permanent feeds are useful if you have a feed with a group of posts which never needs to be updated. It creates a permanent record of the feed for optimal performance. Use the shortcode setting &quot;permanent&quot; if a feed never needs to be updated: <code>[instagram-feed permanent=\\\"true\\\"]<\\/code>.<\\/li>\\n<li>New: Added backup caching for all feeds. If the feed is unable to display or too many posts are being filtered out, a backup feed will be shown to visitors if a backup cache is available.<\\/li>\\n<li>New: Added setting in moderation mode to make a &quot;white list&quot; feed permanent. Check the box labeled &quot;This is a permanent white list (never needs to update)&quot; when creating a &quot;white list&quot;.<\\/li>\\n<li>New: Icons are now generated as SVGs for a sharper look and more semantic markup.<\\/li>\\n<li>New: Added support for translating the post date and the word &quot;Share&quot; in the lightbox.<\\/li>\\n<li>New: Added a setting to the Misc section to disable jQuery mobile code. This will fix issues with jQuery versions 2.x or later.<\\/li>\\n<li>New: Added support for running custom JavaScript code when the lightbox is launched<\\/li>\\n<li>Tweak: Added CSS to remove borders underneath links in the feed which were added by some themes.<\\/li>\\n<li>Tweak: Updating or installing the plugin will automatically clear the cache in popular page caching plugins and JavaScript optimizing plugins.<\\/li>\\n<\\/ul>\\n<h4> 2.8.3 <\\/h4>\\n<ul>\\n<li>New: Added config file for WPML compatibility. Display your feed on your multi-language sites <a href=\\\"https:\\/\\/wpml.org\\/\\\">WPML website<\\/a><\\/li>\\n<li>New: Added translation files for Danish (da_DK), Finnish (fi_FL), Japanese (ja_JP), Norwegian (nn_NO), Portuguese (pt_PT), and Swedish (sv_SE) to translate &quot;Load More...&quot; and &quot;Follow on Instagram&quot;<\\/li>\\n<li>Fix: Bug with linking random text in captions in the lightbox.<\\/li>\\n<li>Fix: Carousel feeds were not displaying properly when resizing the browser window from desktop to mobile width.<\\/li>\\n<\\/ul>\\n<h4> 2.8.2 <\\/h4>\\n<ul>\\n<li>Fix: Directions for a single post feed were not opening on the &quot;Configure&quot; tab.<\\/li>\\n<li>Fix: Carousel post types in the lightbox would not play the 2nd video in the carousel.<\\/li>\\n<li>Fix: Regular expression to add links to hashtags, websites, and mentions in the caption of the lightbox is improved.<\\/li>\\n<\\/ul>\\n<h4> 2.8.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed carousel feeds with mobile columns set to &quot;auto&quot; not showing images at their proper size.<\\/li>\\n<\\/ul>\\n<h4> 2.8 <\\/h4>\\n<ul>\\n<li>New: You can now choose to set the number of columns and posts to use for mobile, which allows you to decide how your Instagram feed is displayed across all devices. You can find these settings by navigating to <code>Customize &gt; Layout<\\/code>, and clicking on <code>Show Mobile Options<\\/code> under the respective setting, or you can use the following shortcode options: <code>colsmobile=3 nummobile=9<\\/code><\\/li>\\n<li>New: Visitors to your site can now trigger the loading of more posts as they scroll down your feed. Enable this for all feeds by using the setting located at <code>Customize &gt; Autoscroll Load More<\\/code>, or apply this to a specific feed using the shortcode option: <code>autoscroll=true<\\/code><\\/li>\\n<li>New: It\'s now easier to collect post IDs for creating single post feeds as they can be displayed underneath posts while viewing a feed in &quot;Moderation Mode&quot;. To view the ID for a post, enable &quot;Moderation Mode&quot; for your feed and simply check the box labeled &quot;Show post ID under image&quot;.<\\/li>\\n<li>Tweak: Added an icon to carousel posts to let visitors know that it\'s a carousel<\\/li>\\n<li>Fix: Fixed an issue where the video would not play when the first slide in a carousel post was a video<\\/li>\\n<\\/ul>\\n<h4> 2.7 <\\/h4>\\n<ul>\\n<li>New: &quot;Custom Image Sizes&quot; now available for use in your feeds. These are available image resolutions not officially supported by Instagram. To use them, go to the &quot;Customize&quot; tab and check the box to &quot;Use a Custom Image Size&quot;. You can then select from the revealed dropdown menu.<\\/li>\\n<li>New: Private feeds and single posts from private feeds will not break a feed but instead display a message to logged-in admins and exclude the private data<\\/li>\\n<li>Tweak: Lightbox moved farther to the foreground to prevent an issue with the navigation menu covering the lightbox in certain themes<\\/li>\\n<li>Tweak: Several images in the plugin have been optimized to reduce file size<\\/li>\\n<li>Tweak: Welcome page now only displayed for major updates<\\/li>\\n<li>Fix: Refactored code that was causing a false positive in a security plugin<\\/li>\\n<li>Fix: Carousel &quot;slideshow&quot; posts are still included in feeds which are set to only display photos<\\/li>\\n<li>Fix: Fixed missing &quot;media&quot; attribute in CSS file inclusion code<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with videos in slideshow posts<\\/li>\\n<\\/ul>\\n<h4> 2.6 <\\/h4>\\n<ul>\\n<li>New: Added translation files for French (fr_FR), German (de_DE), English (en_EN), Spanish (es_ES), Italian (it_IT), and Russian (ru_RU) to translate &quot;Load More...&quot; and &quot;Follow on Instagram&quot;<\\/li>\\n<li>New: Instagram &quot;Slideshow&quot; posts are now supported. When viewing a slideshow post in the popup lightbox you can now scroll through to view the other images.<\\/li>\\n<li>Tweak: The lightbox navigation arrows have been moved outside of the image area to make room for slideshow posts and closer emulate the lightbox on Instagram<\\/li>\\n<li>Tweak: Font Awesome stylesheet handle has been renamed so it will only be loaded once if Custom Facebook Feed is also active<\\/li>\\n<li>Tweak: Removed query string at the end of the Font Awesome css file when being included on the page<\\/li>\\n<li>Fix: Undeclared variables in the JavaScript file now declared for strict mode compatibility<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Fix: Feed cache was being assigned to the header cache under certain conditions causing the header to show as &quot;undefined&quot;<\\/li>\\n<li>Fix: Php notice when saving moderation mode settings without any blocked users<\\/li>\\n<\\/ul>\\n<h4> 2.5 <\\/h4>\\n<ul>\\n<li>New: Added a workaround for an issue caused by some caching plugins. Enabling the &quot;Force cache to clear on interval&quot; setting on the &quot;Customize&quot; tab will now clear the page cache in some of the major caching plugins when the Instagram feed updates.<\\/li>\\n<li>Tweak: Reduced Ajax calls made by the plugin to one per feed to retrieve cached data<\\/li>\\n<li>Tweak: The plugin JavaScript file is now only included on pages where the feed is displayed, and a setting has been added to only load the CSS file on pages where the feed is displayed<\\/li>\\n<li>Tweak: Access token is now automatically saved if retrieved with the button on the &quot;configure&quot; tab<\\/li>\\n<li>Tweak: Changed how the caching errors caused by page caching plugins are handled<\\/li>\\n<li>Tweak: If you\'re using an Ajax theme and calling the plugin\'s <code>sbi_init()<\\/code> function when the page content loads then we advise updating this to add a caching parameter. See <a href=\\\"https:\\/\\/smashballoon.com\\/my-photos-dont-show-up-sometimes-unless-i-refresh-my-page-ajax-theme\\/\\\">this page<\\/a> for how you can update any custom code to take advantage of this.<\\/li>\\n<li>Fix: Improved sanitization and validation of data to be cached before saving to the database<\\/li>\\n<li>Fix: Added workaround for jQuery 3.0+ breaking jQuery mobile code<\\/li>\\n<li>Fix: Added space between an attribute to make feed html valid<\\/li>\\n<\\/ul>\\n<h4> 2.4.2 <\\/h4>\\n<ul>\\n<li>Fix: Using the &quot;Load More&quot; button in moderation mode would cause the moderation settings to submit more than once under certain circumstances.<\\/li>\\n<\\/ul>\\n<h4> 2.4.1 <\\/h4>\\n<ul>\\n<li>Fix: When used in conjunction with plugins that concatenate\\/minify\\/cache JavaScript the feed would sometimes load photos multiple times when certain settings were used. A setting was added to provide a workaround for cached pages as an option in the &quot;Misc&quot; section of the plugin\'s &quot;Customize&quot; tab.<\\/li>\\n<li>Fix: Fixed a bug caused when the HTML element that the Instagram Feed is inside doesn\'t have a class on it<\\/li>\\n<li>Fix: Fixed a JavaScript error that occurred in the lightbox when a post has no caption<\\/li>\\n<\\/ul>\\n<h4> 2.4 <\\/h4>\\n<ul>\\n<li>New: Added a visual moderation system (moderation mode) to allow you to create feeds of approved posts, block users, and remove specific posts from your feeds. Enable this feature on the &quot;Customize&quot; tab or add this to your shortcode: <code>[instagram-feed moderationmode=\\\"true\\\"]<\\/code>. Then click the \'moderate feed\' button on the front end of your site. For further information, see <a href=\\\"https:\\/\\/smashballoon.com\\/guide-to-moderation-mode\\/\\\">these directions<\\/a>.<\\/li>\\n<li>New: Comments for individual posts are now available to be displayed in the lightbox. Enable this on the &quot;Customize&quot; tab or by adding this to your shortcode: <code>[instagram-feed lightboxcomments=\\\"true\\\"]<\\/code>. The number of comments shown can be changed as well: <code>[instagram-feed numcomments=\\\"10\\\"]<\\/code>.<\\/li>\\n<li>New: Create a &quot;Shoppable&quot; feed using links in the captions of your Instagram posts. Check the box next to this setting on the &quot;Customize&quot; tab or add this to the shortcode: <code>[instagram-feed captionlinks=\\\"true\\\"]<\\/code>. This requires an extra step when you post to Instagram. For further information, see <a href=\\\"https:\\/\\/smashballoon.com\\/make-a-shoppable-feed\\/\\\">these directions<\\/a>.<\\/li>\\n<li>New: Ability to show posts only from a specific user. Add a user to the setting on the &quot;Customize&quot; tab or add this to the shortcode: <code>[instagram-feed showusers=\\\"smashballoon\\\"]<\\/code>.<\\/li>\\n<li>Tweak: Improved hashtag detection of the &quot;includewords&quot; setting<\\/li>\\n<li>Fix: Spaces in the shortcode were causing issues for &quot;single&quot; feeds<\\/li>\\n<li>Fix: Removed padding on the &quot;load more&quot; button if it is hidden in the feed<\\/li>\\n<li>Fix: The first hashtag was not always being made into a link in the lightbox<\\/li>\\n<li>Fix: Lightboxes are now separated when there are more than one of them on the page<\\/li>\\n<li>Fix: Pagination would sometimes break for multiple user\\/location\\/hashtag feeds<\\/li>\\n<\\/ul>\\n<h4> 2.3.1 <\\/h4>\\n<ul>\\n<li>Fix: Instagram\'s new &quot;Slideshow&quot; post feature isn\'t supported yet by their API and so this was causing an error in feeds that included them. This error has been fixed but as Instagram hasn\'t yet added support in their API for slideshow posts then the plugin isn\'t able to display them. Once they add support then it will be added into the plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.3 <\\/h4>\\n<ul>\\n<li>New: Added the ability to display a feed of specific posts. You can do this by using the <code>single<\\/code> shortcode setting. First set the feed type to be &quot;single&quot;, then paste the ID of the post(s) into the single shortcode setting, like so: <code>[instagram-feed type=\\\"single\\\" single=\\\"sbi_1349591022052854916_10145706\\\"]<\\/code>. For further information, see <a href=\\\"https:\\/\\/smashballoon.com\\/how-do-i-create-a-single-post-feed\\/\\\">these directions<\\/a>.<\\/li>\\n<li>New: We\'ve added a widget with the &quot;Instagram Feed&quot; label so that you no longer need to use the default &quot;Text&quot; widget<\\/li>\\n<li>Tweak: Addressed an occasional error with includewords\\/excludewords setting<\\/li>\\n<li>Tweak: Added commas to large numbers<\\/li>\\n<li>Tweak: When displaying photos by random the plugin will now randomize from the last 33 posts for unfiltered feeds rather than just randomizing the posts shown in the feed<\\/li>\\n<li>Tweak: User names can now be used instead of user ids for user feeds<\\/li>\\n<li>Fix: International characters are now supported in includewords\\/excludewords settings<\\/li>\\n<li>Fix: Fixed an undefined constant warning<\\/li>\\n<\\/ul>\\n<h4> 2.2.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added a setting to disable the icon font used in the plugin<\\/li>\\n<li>Tweak: The &quot;Include words&quot; filtering option now only returns posts for an exact match instead of fuzzy matching<\\/li>\\n<li>Tweak: Change Instagram link to go to https<\\/li>\\n<li>Tweak: Added coordinates as attributes to the location element<\\/li>\\n<li>Fix: Fixed an issue with the Instagram image URLs which was resulting in inconsistent url references in some feeds<\\/li>\\n<li>Fix: Fixed an imcompatibility issue the MediaElement.js plugin<\\/li>\\n<li>Fix: Fixed an issue with videos not pausing in the lightbox when navigating using the keyboard arrows<\\/li>\\n<\\/ul>\\n<h4> 2.2 <\\/h4>\\n<ul>\\n<li><strong>IMPORTANT: Due to the recent Instagram API changes, in order for the Instagram Feed plugin to continue working after June 1st you must obtain a new Access Token by using the Instagram button on the plugin\'s Settings page.<\\/strong> This is required even if you recently already obtained a new token. Apologies for any inconvenience.<\\/li>\\n<\\/ul>\\n<h4> 2.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Updated the Instagram icon to match their new branding<\\/li>\\n<li>Tweak: Added a help link next to the Instagram login button in case there\'s an issue using it<\\/li>\\n<li>Fix: Updated the Font Awesome icon font to the latest version: 4.6.3<\\/li>\\n<\\/ul>\\n<h4> 2.1 <\\/h4>\\n<ul>\\n<li>Compatible with Instagram\'s new API changes effective June 1st<\\/li>\\n<li>New: Added the ability to display posts that your user has &quot;liked&quot; on Instagram. Thanks to Anders Hjort Straarup for his code contribution.<\\/li>\\n<li>New: Added a setting to allow you to use a fixed pixel width for the feed on desktop but switch to a 100% width responsive layout on mobile<\\/li>\\n<li>Tweak: Added a width and height attribute to the images to help improve Google PageSpeed score<\\/li>\\n<li>Tweak: When a feed contains posts from multiple hashtags then all of the hashtags are listed in the feed header<\\/li>\\n<li>Tweak: Allow users with WordPress &quot;Editor&quot; role to be able to moderate images in the feed<\\/li>\\n<li>Tweak: Added descriptive error messages<\\/li>\\n<li>Tweak: A few minor UI tweaks on the settings pages<\\/li>\\n<li>Fix: Hashtags which include foreign characters are now linked correctly<\\/li>\\n<li>Fix: Fixed an issue with the <code>showfollowers<\\/code> shortcode option<\\/li>\\n<li>Fix: Fixed an issue with the carousel shortcode setting not working reliably<\\/li>\\n<li>Fix: Fixed an issue with the carousel script firing too soon when multiple API requests were required to fill the feed<\\/li>\\n<li>Misc bug fixes<\\/li>\\n<\\/ul>\\n<h4> 2.0.4.2 <\\/h4>\\n<ul>\\n<li>Fix: Fixed a JavaScript error in the admin area when using WordPress 4.5<\\/li>\\n<\\/ul>\\n<h4> 2.0.4.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with images in carousels not scaling correctly on mobile<\\/li>\\n<li>Fix: Fixed an issue with the lightbox breaking when an image didn\'t have a caption<\\/li>\\n<\\/ul>\\n<h4> 2.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Fixed a bug which was causing the height of the photos to be shorter than they should have been in some themes<\\/li>\\n<li>Fix: Fixed an issue where when a feed was initially hidden (in a tab, for example) then the photo resolution was defaulting to \'thumbnail\'<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue which was setting the visibility of some photos to be hidden in certain browsers<\\/li>\\n<li>Fix: The new square photo cropping is no longer being applied to feeds displaying images at less than 150px wide as the images from Instagram at this size are already square cropped<\\/li>\\n<li>Fix: Fixed a JavaScript error in Internet Explorer 8 caused by the \'addEventListener\' function not being supported<\\/li>\\n<li>Note: If you notice any other bugs then please let us know so we can get them fixed right away. Thanks!<\\/li>\\n<\\/ul>\\n<h4> 2.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added an option to force the plugin cache to clear on an interval if it isn\'t automatically clearing as expected<\\/li>\\n<li>Fix: Fixed an issue where photo wouldn\'t appear in the Instagram feed if it was initially being hidden<\\/li>\\n<li>Fix: Fixed an issue where the new image cropping fuction was failing to run on some sites and causing the images to appear as blank<\\/li>\\n<li>Fix: Fixed a bug where stray commas at the beginning or end of lists of IDs or hashtags would cause an error<\\/li>\\n<li>Fix: Removed the document ready function from around the plugin\'s initiating function so that it can be called externally if needed<\\/li>\\n<\\/ul>\\n<h4> 2.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with the number of likes and comments not showing over the photo when selected<\\/li>\\n<li>Fix: Fixed an issue with the carousel navigation arrows not being correctly aligned vertically when the caption was displayed beneath the photos<\\/li>\\n<li>Fix: The icons in the header for the number of photos and followers are now the right way around<\\/li>\\n<\\/ul>\\n<h4> 2.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>New: Completely rebuilt the core of the plugin to drastically improve the flexibility of the plugin and allow us to add some new post filtering options<\\/li>\\n<li>New: Added caching to minimize Instagram API requests<\\/li>\\n<li>New: Added a new Carousel feature which allows you to create awesome, customizable, and responsive carousels out of your Instagram feeds. Includes the ability to display navigation arrows, pagination, or enable autoplay. Use the Carousel settings on the plugin\'s Customize page or enable the carousel directly in your shortcode by using <code>carousel=true<\\/code>. See <a href=\\\"\\/\\/smashballoon.com\\/instagram-feed\\/demo\\/carousel\\/&#039;\\\">here<\\/a> for an example of the carousel in action.<\\/li>\\n<li>New: You can now display photos from location ID. Use the field on the plugin\'s Settings page or the following shortcode options: <code>type=location location=213456451<\\/code>.<\\/li>\\n<li>New: Display photos by location coordinates. Use the field on the plugin\'s Settings page or the following shortcode options: <code>type=coordinates coordinates=\\\"(25.76,-80.19,500)\\\"<\\/code>. See the directions on the plugin\'s Settings page for help on how to find coordinates.<\\/li>\\n<li>New: If you have uploaded a photo in portrait or landscape then the plugin will now display the square cropped version of photo in your feed and the full landscape\\/portrait image in the pop-up lightbox. <strong>Important:<\\/strong> To enable this you will need to refresh your Access Token by using the big blue Instagram login button on the plugin\'s Settings page, and then copying your new token into the plugin\'s Access Token field.<\\/li>\\n<li>New: You can now choose to only show photos from your feeds which contain certain words or hashtags. For example, you can display photos from a User account which only contain a specific hashtag. Use the settings in the new \'Post Filtering\' section on the Customize page, or define words or hashtags directly in your shortcode; <code>includewords=\\\"#sunshine\\\"<\\/code><\\/li>\\n<li>New: You can now also remove photos which contain certain words or hashtags. Use the setting in the \'Post Filtering\' section, or the following shortcode option <code>excludewords=\\\"bad, words\\\"<\\/code><\\/li>\\n<li>New: Block photos from certain users by entering their usernames into the \'Block Users\' field on the plugin\'s Customize page<\\/li>\\n<li>New: Added a second style of header. The \'boxed\' header style can be configured under the \'Header\' section of the plugin\'s Customize page, or enabled using <code>headerstyle=boxed<\\/code><\\/li>\\n<li>New: The plugin now automatically removes duplicate photos from your feed<\\/li>\\n<li>New: When you click on the name of a setting on the plugin\'s Settings pages it now displays the shortcode option for that setting, making it easier to find the option that you need<\\/li>\\n<li>New: Hashtags and @tags in the caption are now linked to the relevant pages on Instagram<\\/li>\\n<li>New: Text in the pop-up lightbox is now formatted with line breaks as it is on Instagram<\\/li>\\n<li>New: Choose to show the number of photos and followers an account has in the feed header. Use the setting under the \'Header\' section, or the following shortcode option <code>showfollowers=true<\\/code>.<\\/li>\\n<li>New: You can now choose to include only photos or only videos in your feed. Use the setting under the \'Photos\' section on the Customize page, or the following shortcode option: <code>media=photos<\\/code>.<\\/li>\\n<li>New: You can now display the photo location, caption, or number of likes and comments over the photo when it\'s hovered upon<\\/li>\\n<li>New: Pick and choose which information to show over the photo when it\'s hovered upon. Use the checkboxes under the \'Photo Hover Style\' section, or the <code>hoverdisplay<\\/code> shortcode option: <code>hoverdisplay=\\\"date, location, likes\\\"<\\/code>.<\\/li>\\n<li>Tweak: A header is now added to the hashtag feed and displays the hashtag<\\/li>\\n<li>Tweak: Added a loading symbol to the \'Load more\' button to indicate when new photos are loading<\\/li>\\n<li>Fix: Fixed an issue where duplicate photos would be loaded into a feed if the \'Are you using an Ajax powered theme\' setting was checked on a non-Ajax powered theme<\\/li>\\n<li>Fix: The play button icon shown over the top of the photo is now clickable<\\/li>\\n<li>Fix: Fixed an issue with emojis in the feed header displaying on a separate line<\\/li>\\n<li>Fix: Fixed a bug where the image resolution \'Auto-detect\' setting would sometimes display the wrong image size<\\/li>\\n<\\/ul>\\n<h4> 1.3.1 <\\/h4>\\n<ul>\\n<li>New: Added an email option to the share icons in the pop-up lightbox<\\/li>\\n<li>Fix: Fixed an issue with the \'Load more\' button not always showing when displaying photos from multiple hashtags or User IDs<\\/li>\\n<li>Fix: Fixed an issue where clicking on the play icon on the photo didn\'t launch the video pop-up<\\/li>\\n<li>Fix: Moved the initiating sbi_init function outside of the jQuery ready function so that it can be called externally if needed by Ajax powered themes\\/plugins<\\/li>\\n<li>Fix: Fixed a problem which sometimes caused the lightbox to conflict with lightboxes built into themes or other plugins<\\/li>\\n<\\/ul>\\n<h4> 1.3 <\\/h4>\\n<ul>\\n<li>New: Added an option to disable the pop-up photo lightbox<\\/li>\\n<li>New: Added swipe support for the popup lightbox on touch screen devices<\\/li>\\n<li>New: Added an setting which allows you to use the plugin with an Ajax powered theme<\\/li>\\n<li>New: Added an option to disable the mobile layout<\\/li>\\n<li>New: Added a Support tab which contains System Info to help with troubleshooting<\\/li>\\n<li>New: Added friendly error messages which display only to WordPress admins<\\/li>\\n<li>New: Added validation to the User ID field to prevent usernames being entered instead of IDs<\\/li>\\n<li>Tweak: Disabled the hover event on touch screen devices so that tapping the photo once launches the lightbox<\\/li>\\n<li>Tweak: Made the Access Token field slightly wider to prevent tokens being copy and pasted incorrectly<\\/li>\\n<li>Tweak: Updated the plugin updater\\/license check script<\\/li>\\n<\\/ul>\\n<h4> 1.2.2 <\\/h4>\\n<ul>\\n<li>New: Added the ability to add a class to the feed via the shortcode, like so: [instagram-feed class=&quot;my-feed&quot;]<\\/li>\\n<li>Fix: Fixed an issue with videos not playing on some touch-screen devices<\\/li>\\n<li>Fix: Fixed an issue with video sizing on some mobile devices<\\/li>\\n<li>Fix: Addressed a few CSS issues which were causing some minor formatting issues on certain themes<\\/li>\\n<\\/ul>\\n<h4> 1.2.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with the width of videos exceeding the lightbox container on smaller screen sizes and mobile devices<\\/li>\\n<li>Fix: Fixed an issue with both buttons being hidden when there were no more posts to load, rather than just the \'Load More\' button<\\/li>\\n<li>Fix: Added a small amount of margin to the top of the buttons to prevent them touching when displayed in narrow columns or on mobile<\\/li>\\n<\\/ul>\\n<h4> 1.2 <\\/h4>\\n<ul>\\n<li>New: You can now display photos from multiple User IDs or hashtags. Simply separate your IDs or hashtags by commas.<\\/li>\\n<li>New: Added an optional header to the feed which contains your profile picture, username and bio. You can activate this on the Customize page.<\\/li>\\n<li>New: Specific photos in your feed can now be hidden. A link is displayed in the popup photo lightbox to site admins only which reveals the photos ID. This can then be added to the new \'Hide Photos\' section on the plugin\'s Customize page.<\\/li>\\n<li>New: The plugin now includes an \'Auto-detect\' option for the Image Resolution setting which will automatically set the correct image resolution based on the size of your feed.<\\/li>\\n<li>New: Added the username and profile picture to the popup photo lightbox<\\/li>\\n<li>New: Added a \'Share\' button to the photo lightbox which allows you to share the photo on various social media platforms<\\/li>\\n<li>New: Added an Instagram button to the photo lightbox which allows you to view the photo on Instagram<\\/li>\\n<li>New: Added an optional \'Follow on Instagram\' button which can be displayed at the bottom of your feed. You can activate this on the Customize page.<\\/li>\\n<li>New: Added the ability to use your own custom text for the \'Load More\' button<\\/li>\\n<li>New: You can now change the color of the text and icons which are displayed when hovering over the photos<\\/li>\\n<li>New: Added a loader icon to indicate that the images are loading<\\/li>\\n<li>Tweak: Tweaked some CSS to improve spacing and cross-browser consistency<\\/li>\\n<li>Tweak: Removed the semi-transparent background color from caption and likes section. can now be added via CSS instead using: #sb_instagram .sbi_info{ background: rgba(255,255,255,0.5); }<\\/li>\\n<li>Tweak: Improved the documentation within the plugin settings pages<\\/li>\\n<li>Fix: Fixed an issue with some photos not displaying at full size in the popup photo lightbox<\\/li>\\n<li>Fix: Added word wrapping to captions so that long sentences or hashtags without spaces to wrap onto the next line<\\/li>\\n<\\/ul>\\n<h4> 1.1 <\\/h4>\\n<ul>\\n<li>New: Added video support. Videos now play in the lightbox!<\\/li>\\n<li>New: Redesigned the photo hover state to use icons and include the date and author name<\\/li>\\n<li>New: Added an option to change the color of the hover background<\\/li>\\n<li>Tweak: You can now specify the hashtag with or without the # symbol<\\/li>\\n<li>Tweak: Tweaked the responsive design and modified the media queries so that the feed switches to 1 or 2 columns on mobile<\\/li>\\n<li>Tweak: Added a friendly message if you activate the Pro version of the plugin while the free version is still activated<\\/li>\\n<li>Tweak: Added a \'Settings\' link to the Plugins page<\\/li>\\n<li>Tweak: Added a link to the <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-feed\\/docs\\/\\\">setup directions<\\/a><\\/li>\\n<li>Fix: Replaced the \'on\' function with the \'click\' function to increase compatibility with themes using older versions of jQuery<\\/li>\\n<li>Fix: Fixed an issue with double quotes in photo captions<\\/li>\\n<li>Fix: Removed float from the feed container to prevent clearing issues with other widgets<\\/li>\\n<\\/ul>\\n<h4> 1.0.3 <\\/h4>\\n<ul>\\n<li>Tweak: If you have more than one Instagram feed on a page then the photos in each lightbox slideshow are now grouped by feed<\\/li>\\n<li>Tweak: Added an initialize function to the plugin<\\/li>\\n<li>Fix: Added a unique class and data attribute to the lightbox to prevent conflicts with other lightboxes on your site<\\/li>\\n<li>Fix: Fixed an occasional issue with the \'Sort Photos By\' option being undefined<\\/li>\\n<\\/ul>\\n<h4> 1.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added the photo caption as the \'alt\' tag of the images<\\/li>\\n<li>Fix: Fixed an issue with the caption elipsis link not always working correctly after having clicked the \'Load More\' button<\\/li>\\n<li>Fix: Changed the double quotes to single quotes on the \'data-options\' attribute<\\/li>\\n<\\/ul>\\n<h4> 1.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed a minor issue with the Custom JavaScript being run before the photos are loaded<\\/li>\\n<\\/ul>\\n<h4> 1.0 <\\/h4>\\n<ul>\\n<li>Launched the Instagram Feed Pro plugin!<\\/li>\\n<\\/ul>\",\"installation\":\"<ol>\\n<li>Install the Instagram plugin either via the WordPress plugin directory, or by uploading the files to your web server (in the <code>\\/wp-content\\/plugins\\/<\\/code> directory).<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu in WordPress.<\\/li>\\n<li>Navigate to the \'Instagram Feed\' settings page to configure your Instagram feed.<\\/li>\\n<li>Use the shortcode <code>[instagram-feed]<\\/code> in your page, post or widget to display your photos.<\\/li>\\n<li>You can display multiple Instagram feeds by using shortcode options, for example: <code>[instagram-feed id=YOUR_USER_ID_HERE cols=3 width=50 widthunit=%]<\\/code><\\/li>\\n<\\/ol>\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"stable_tag\":\"5.12.1\",\"tested\":\"5.7\",\"description\":[\"<p>Display Instagram photos from any non-private Instagram accounts, either in the same single feed or in multiple different ones.<\\/p>\\n<h4> Features <\\/h4>\\n<ul>\\n<li>Super <strong>simple to set up<\\/strong><\\/li>\\n<li>Completely <strong>responsive<\\/strong> and mobile ready - layout looks great on any screen size and in any container width<\\/li>\\n<li><strong>Completely customizable<\\/strong> - Customize the width, height, number of photos, number of columns, image size, background color, image spacing, text styling, likes &amp; comments and more!<\\/li>\\n<li>Display <strong>multiple Instagram feeds<\\/strong> on the same page or on different pages throughout your site<\\/li>\\n<li><strong>GDPR Compliance<\\/strong> - automatically integrates with many of the popular GDPR cookie consent plugins and includes a 1-click easy GDPR setting.<\\/li>\\n<li>Use the built-in <strong>shortcode options<\\/strong> to completely customize each of your Instagram feeds<\\/li>\\n<li>Display thumbnail, medium or <strong>full-size photos<\\/strong> from your Instagram feed<\\/li>\\n<li><strong>Infinitely load more<\\/strong> of your Instagram photos with the \'Load More\' button<\\/li>\\n<li>View photos in a pop-up <strong>lightbox<\\/strong><\\/li>\\n<li>Display photos by User ID or hashtag<\\/li>\\n<li>Display photo captions, likes and comments<\\/li>\\n<li>Use your own Custom CSS or JavaScript<\\/li>\\n<\\/ul>\\n<h4> Benefits <\\/h4>\\n<ul>\\n<li>Increase your Instagram followers by displaying your Instagram content on your website<\\/li>\\n<li>Save time and increase efficiency by only posting your photos to Instagram and automatically displaying them on your website<\\/li>\\n<\\/ul>\"],\"changelog\":[\"<h4> 5.12.1 <\\/h4>\\n<ul>\\n<li>Fix: Updated the Instagram authorization URL to prevent issues with connecting personal accounts<\\/li>\\n<\\/ul>\\n<h4> 5.12 <\\/h4>\\n<ul>\\n<li>New: Added support for IGTV posts. When creating an IGTV post, keep the &quot;Post a Preview&quot; setting enabled and the IGTV post will appear in your feed. IGTV posts are only available for connected Instagram business profiles and aren\'t available if you\'re using a personal Instagram profile in the plugin.<\\/li>\\n<li>Fix: Fixed a PHP error when the HTTP request to refresh an access token resulted in an error.<\\/li>\\n<\\/ul>\\n<h4> 5.11.2 <\\/h4>\\n<ul>\\n<li>Fix: Changed how access tokens are retrieved to prevent conflict with the &quot;Rank Math SEO&quot; plugin when connecting an account.<\\/li>\\n<li>Fix: Spaces in the comma separated &quot;hoverdisplay&quot; shortcode setting would cause some of the values not to work.<\\/li>\\n<li>Fix: Updated jQuery methods for compatibility with WordPress 5.7.<\\/li>\\n<li>Fix: If all posts in a feed were blocked via the filter settings then an unfiltered backup feed would incorrectly be displayed.<\\/li>\\n<\\/ul>\\n<h4> 5.11.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed PHP warning &quot;array_diff(): Expected parameter 1 to be an array, string given&quot;.<\\/li>\\n<li>Fix: Fixed PHP warning &quot;Invalid argument supplied for foreach()&quot; when using a recent hashtag in a feed.<\\/li>\\n<li>Fix: Request to retrieve &quot;top&quot; posts for recent hashtag posts was not always made the first time the feed loaded.<\\/li>\\n<li>Fix: Fixed issue where account errors were not being removed after an account was deleted or reconnected.<\\/li>\\n<\\/ul>\\n<h4> 5.11 <\\/h4>\\n<ul>\\n<li>New: The locations of the Instagram feeds on your site will now be logged and listed on a single page for easier management. After this feature has been active for awhile, a &quot;Feed Finder&quot; link will appear next to the Feed Type setting on the plugin Settings page which allows you to see a list of all feeds on your site along with their locations.<\\/li>\\n<li>New: Local resized images will now include a 150x150 resolution version for each post.<\\/li>\\n<li>Tweak: Locally saved image quality set to 80% to increase feed performance without a noticeable visual difference.<\\/li>\\n<li>Tweak: Improved how posts are sorted by date when there are more than one user account or hashtag in a feed.<\\/li>\\n<li>Tweak: For hashtag feeds, a specific account for retrieving hashtag posts can be used by adding user=&quot;USERNAME&quot; in the shortcode.<\\/li>\\n<li>Fix: Mixed feeds that included &quot;tagged&quot; posts would always display the tagged posts last in the feed.<\\/li>\\n<li>Fix: Old accounts from Instagram\'s deprecated, non-functioning API are ignored if still connected.<\\/li>\\n<\\/ul>\\n<h4> 5.10 <\\/h4>\\n<ul>\\n<li>Tweak: Several performance improvements have been made in this update such as improved caching and fewer database queries when displaying feeds.<\\/li>\\n<li>Tweak: The limit of resized, local images created and stored were raised for the overall number and the rate at which they could be created.<\\/li>\\n<li>Tweak: Improvements made to hashtag feeds including the ability to display a feed of multiple hashtags even if one has not yet had any posts made to it.<\\/li>\\n<li>Tweak: Improved how feed errors are handled and reported. API request delays will only apply to feeds encountering errors and will not affect other feeds.<\\/li>\\n<li>Tweak: Added hook for disabling image resizing dynamically with PHP.<\\/li>\\n<li>Fix: PHP Warning &quot;required parameter follows optional parameter&quot; that would display when using PHP 8+.<\\/li>\\n<li>Fix: GDPR feature was reporting errors when the feature was working fine.<\\/li>\\n<li>Fix: When using a hashtag feed and the first image in a carousel post was a video, the image would not always display properly.<\\/li>\\n<li>Fix: When using background caching and a hashtag feed, duplicate posts would appear in the feed.<\\/li>\\n<\\/ul>\\n<h4> 5.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: If the image resizing feature isn\'t able to work successfully due to an issue, then the GDPR setting will be disabled unless manually enabled to prevent blank images in the feed.<\\/li>\\n<li>Fix: In some situations the GDPR setting was incorrectly reporting an error with image resizing.<\\/li>\\n<\\/ul>\\n<h4> 5.9 <\\/h4>\\n<ul>\\n<li>New: Integrations with popular GDPR cookie consent solutions added. Visit the Instagram Feed settings page, Customize tab, Advanced section for more information.<\\/li>\\n<li>Tweak: Icon font support was discontinued. Only SVGs will be used for icons in feeds.<\\/li>\\n<li>Fix: oEmbeds were not always working in much older versions of WordPress.<\\/li>\\n<\\/ul>\\n<h4> 5.8.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added PHP filter &quot;sbi_flags&quot; to make changes to JavaScript flags.<\\/li>\\n<li>Tweak: Added a check in the JavaScript flags for &quot;disableOnTouch&quot; to disable the code that allows the lightbox to be opened without tapping the images twice on touch devices.<\\/li>\\n<li>Fix: If there was an oEmbed error while visiting the Support tab, the System Info would be blank.<\\/li>\\n<li>Fix: API error notices would not be removed from the WordPress dashboard after successfully reconnecting an account when the problem was resolved.<\\/li>\\n<li>Fix: Fixed PHP Error that would occur when connecting a personal account that would result in an HTTP error.<\\/li>\\n<\\/ul>\\n<h4> 5.8.4 <\\/h4>\\n<ul>\\n<li>Fix: Added more debugging info to the System Info for oEmbeds.<\\/li>\\n<li>Fix: Added a workaround for a rare issue where oEmbed access tokens wouldn\'t save.<\\/li>\\n<li>Fix: Carousel posts would not show images when using the &quot;Disable JS Image Loading&quot; setting and image resizing was disabled.<\\/li>\\n<li>Fix: Hashtag posts were not showing up in a mixed feed that included a hashtag where the hashtag had not been used in another feed previously.<\\/li>\\n<\\/ul>\\n<h4> 5.8.3 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue caused by an unannounced Instagram API change affecting thumbnails in certain video posts if the image resizing feature in the plugin was disabled.<\\/li>\\n<li>Fix: Added oEmbed account info to the plugin &quot;System Info&quot; to make debugging easier.<\\/li>\\n<\\/ul>\\n<h4> 5.8.2 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with an Instagram API change causing some images not to display if the image resizing feature was disabled.<\\/li>\\n<\\/ul>\\n<h4> 5.8.1 <\\/h4>\\n<ul>\\n<li>Tweak: Minor update to footer.php template<\\/li>\\n<li>Tweak: Added support for improved notices on the plugin settings page.<\\/li>\\n<li>Fix: JavaScript error when using keyboard navigation of lightbox when switching from a video post to an image post.<\\/li>\\n<li>Fix: 7-day, 30 hashtag limit for hashtag feeds notices were not displaying on the front-end of the site to logged-in admins if it was also causing no posts to display.<\\/li>\\n<li>Fix: Added aria-hidden=&quot;true&quot; attribute to loader icon and role=&quot;carousel&quot; to the HTML for carousel layouts for better accessibility.<\\/li>\\n<\\/ul>\\n<h4> 5.8 <\\/h4>\\n<ul>\\n<li>New: Added support for Instagram oEmbeds. When you share a link to a Instagram post, WordPress automatically converts it into an embedded Instagram post for you (an &quot;oEmbed&quot;). However, on October 24, 2020, WordPress is discontinuing support for Instagram oEmbeds and so any existing or new embeds will no longer work. Don\'t worry though, we have your back! This update adds support for Instagram oEmbeds and so, after updating, the Instagram Feed plugin will automatically keep your oEmbeds working. It will also power any new oEmbeds you post going forward.<\\/li>\\n<li>Tweak: Background caching and favoring local images are now the default settings for new installs.<\\/li>\\n<\\/ul>\\n<h4> 5.7.1 <\\/h4>\\n<ul>\\n<li>Important: Due to recent Instagram changes, private accounts will need to be manually refreshed every 60 days. If you have a private Instagram account, consider making it public to avoid needing to manually reconnect your account.<\\/li>\\n<li>New: Added a notice for accounts that are private which lets you know how long until the account needs to be refreshed. You will also be alerted using our admin notice and email notification system if a private account will soon need to be refreshed.<\\/li>\\n<li>Tweak: If the main image file for a post is not able to load in the lightbox, a backup image file is used.<\\/li>\\n<li>Fix: Recent hashtag feeds were not showing posts from the &quot;top&quot; hashtag endpoint the first time the feed was displayed.<\\/li>\\n<\\/ul>\\n<h4> 5.7 <\\/h4>\\n<ul>\\n<li>New: Added compatibility with our new <a href=\\\"http:\\/\\/smashballoon.com\\/social-wall\\/?utm_source=plugin-pro&amp;utm_campaign=sbi&amp;utm_medium=readme\\\">Social Wall<\\/a> plugin, which allows you to combine feeds from Instagram, Facebook, Twitter, and YouTube into one social media &quot;wall&quot;. If you are using our Smash Balloon All-Access Bundle then the Social Wall plugin is included at no additional cost. Just log into your account to download and install the plugin.<\\/li>\\n<li>Tweak: Changed the names of the CSS and JavaScript files to prevent certain ad blockers from hiding the feed. Original file names still included in this update.<\\/li>\\n<li>Fix: Mixed feeds would not show multiple hashtags.<\\/li>\\n<li>Fix: Added a workaround for an issue caused by lazy-loading plugins which sometimes resulted in blank images in the feed.<\\/li>\\n<li>Fix: Hashtags feeds with multiple hashtags would not be sorted by date.<\\/li>\\n<li>Fix: Fixed inability to connect accounts when using a short viewport and having a lot of accounts available to connect.<\\/li>\\n<li>Fix: Clicking on the &quot;Play&quot; icon for video posts would not open the lightbox.<\\/li>\\n<\\/ul>\\n<h4> 5.6.4 <\\/h4>\\n<ul>\\n<li>Tweak: Headers for &quot;tagged&quot; feeds now show the avatar and bio text for the connected account that is being &quot;tagged&quot; in the posts.<\\/li>\\n<li>Fix: Compatibility updates for WordPress 5.5.<\\/li>\\n<\\/ul>\\n<h4> 5.6.3 <\\/h4>\\n<ul>\\n<li>New: Added a PHP hook &quot;sbi_posted_on_date&quot; to allow you to use custom date formats for posts in the feed.<\\/li>\\n<li>New: Added a PHP hook &quot;sbi_clear_page_caches&quot; which allows you to dynamically disable the Instagram Feed code that clears caches created by common page caching plugins.<\\/li>\\n<li>New: Added a PHP hook &quot;sbi_resize_url&quot; which allows you to change the default URL of locally stored images. This can be helpful for sites using CDNs.<\\/li>\\n<li>Tweak: When displaying a &quot;Mixed&quot; feed (a feed that combines multiple feed types into one) the plugin now show posts in chronological order instead of alternating posts.<\\/li>\\n<li>Tweak: Added a workaround for the wp_json_encode function used in older versions of WordPress.<\\/li>\\n<li>Fix: When displaying feeds which contain multiple recent hashtag feeds combined into one, the plugin now show posts in chronological order.<\\/li>\\n<li>Fix: Added a workaround for themes which add extra HTML elements into the content of the feed and cause layout problems.<\\/li>\\n<li>Fix: Fixed an issue with the carousel not displaying properly when a theme uses right-to-left text direction.<\\/li>\\n<li>Fix: Made the text for the &quot;Share&quot; link translatable.<\\/li>\\n<\\/ul>\\n<h4> 5.6.2 <\\/h4>\\n<ul>\\n<li>Fix: Accounts can be connected without the use of JavaScript.<\\/li>\\n<li>Fix: Default URL for connecting an account changed to prevent &quot;Invalid Scope&quot; connection issue.<\\/li>\\n<\\/ul>\\n<h4> 5.6.1 <\\/h4>\\n<ul>\\n<li>Fix: Workaround added for PHP warning related to an undefined media_url index.<\\/li>\\n<li>Fix: Connecting a business account on a mobile device when more than 2 pages where returned was not possible.<\\/li>\\n<li>Fix: After connecting an account, the warning that there were no connected accounts would still be visible.<\\/li>\\n<li>Fix: URL for retrieving image files from Instagram using a redirect method was changed to prevent an extra, unnecessary redirect.<\\/li>\\n<\\/ul>\\n<h4> 5.6 <\\/h4>\\n<ul>\\n<li>New: Added setting to sort posts by number of likes. Posts from connected business accounts can be sorted by the number of likes. Up to the latest 200 posts from the feed can be included.<\\/li>\\n<li>New: Added setting to offset the first post in the feed. Add offset=(number of posts) to your shortcode to skip posts before starting the feed.<\\/li>\\n<li>New: Date the post was published can now be displayed in hashtag feeds (only for posts collected after this update).<\\/li>\\n<li>New: To help us improve the plugin we have added usage tracking so that we can understand what features and settings are being used, and which features matter to you the most. The plugin will send a report in the background once per week with your plugin settings and basic information about your website environment. No personal or sensitive data is collected (such as email addresses, Instagram account information, license keys, etc). You can opt-out by simply disabling the setting at: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Enable Usage Tracking. See <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-feed\\/usage-tracking\\/\\\">here<\\/a> for more information.<\\/li>\\n<li>New: Some older posts can be included in the feed when first creating a recent hashtag feed. Previously only posts made within the last 24 hours would be included.<\\/li>\\n<li>Tweak: Added PHP filter sbi_license_page_output for changing what displays on the License tab. You can use <a href=\\\"https:\\/\\/smashballoon.com\\/how-can-i-hide-my-license-key-on-the-license-page\\/\\\">this guide<\\/a> for an example on how you can hide your license key.<\\/li>\\n<li>Tweak: &quot;@mentions&quot; were not being detected using the includewords and excludewords filters.<\\/li>\\n<li>Tweak: Added additional checks to make sure the HTTP protocol matches when using resized image URLs from the uploads folder.<\\/li>\\n<li>Tweak: If a post is on both a white list and the block list, it will be included in the related white list feed. Previously it was blocked.<\\/li>\\n<li>Tweak: More information is given when there is an account connection error when connecting an account on the &quot;Configure&quot; page.<\\/li>\\n<li>Tweak: Connecting a business account will permanently remove any accounts from the same user that are from the legacy Instagram API that is expiring in June.<\\/li>\\n<li>Fix: Added a workaround for sanitize_textarea_field for users using an older version of WordPress.<\\/li>\\n<li>Fix: When the lightbox was disabled, clicking the &quot;play&quot; icon for video posts would do nothing.<\\/li>\\n<li>Fix: Fixed HTML error causing the manually connect an account feature to not work.<\\/li>\\n<li>Fix: Access token and account ID are validated and formatted before trying to manually connect an account to prevent errors.<\\/li>\\n<\\/ul>\\n<h4> 5.5.1 <\\/h4>\\n<ul>\\n<li>Fix: API Error #2 was not clearing properly in error reports.<\\/li>\\n<li>Fix: PHP warning &quot;undefined variable account_found&quot;.<\\/li>\\n<li>Tweak: User feeds that do not have a user name or ID assigned to them will automatically use the first connected account for the feed.<\\/li>\\n<li>Tweak: rel=&quot;nofollow&quot; added to all external Instagram Feed links found in the source of the page.<\\/li>\\n<li>Tweak: For carousel feeds, if the number of photos is less than or equal to the number of columns in the feed the number of photos in the carousel is doubled.<\\/li>\\n<\\/ul>\\n<h4> 5.5 <\\/h4>\\n<ul>\\n<li>New: Email alerts for critical issues. If there\'s an issue with an Instagram feed on your website which hasn\'t been resolved yet then you\'ll receive an email notification to let you know. This is sent once per week until the issue is resolved. These emails can be disabled by using the following setting: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Feed Issue Email Report.<\\/li>\\n<li>New: Admin notifications for critical issues. If there is an error with the feed, admins will see notices in the dashboard and on the front-end of the site along with instructions on how to resolve the issue. Front-end admin notifications can be disabled by using the following setting: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Disable Admin Error Notice.<\\/li>\\n<li>New: Added a WordPress \'Site Health\' integration. If there is a critical error with your feeds, it will now be flagged in the site health page.<\\/li>\\n<li>New: Added &quot;About Us&quot; page for those who would like to learn more about Smash Balloon and our other products. Go to Instagram Feed -&gt; About Us in the dashboard.<\\/li>\\n<li>Fix: Pinterest &quot;share&quot; button found in the lightbox was not working correctly.<\\/li>\\n<\\/ul>\\n<h4> 5.4.1 <\\/h4>\\n<ul>\\n<li>Fix: Added workaround for personal account connection error and header display issue due to an Instagram API bug. After updating, click &quot;Save Changes&quot; on the Instagram Feed settings page, &quot;Configure&quot; tab to clear your cache.<\\/li>\\n<\\/ul>\\n<h4> 5.4 <\\/h4>\\n<ul>\\n<li>New: Added an \\u201cInstagram Feed\\u201d Gutenberg block to use in the block editor, allowing you to easily add a feed to posts and pages.<\\/li>\\n<li>Tweak: Custom JavaScript from the &quot;Custom JavaScript&quot; setting no longer added to the page after the document ready event but instead added on page load.<\\/li>\\n<li>Fix: Mobile swipe code will not cause an error if overwritten by another jQuery plugin\\/code snippet<\\/li>\\n<li>Fix: Several improvements and fixes for loading the feed without the JavaScript based image transitions.<\\/li>\\n<\\/ul>\\n<h4> 5.3.3 <\\/h4>\\n<ul>\\n<li>Tested with upcoming WordPress 5.4 update.<\\/li>\\n<li>Tweak: Header and follow button will still be displayed when number of posts is set to 0.<\\/li>\\n<li>Fix: Posts in &quot;tagged&quot; feeds would sometimes appear out of order.<\\/li>\\n<\\/ul>\\n<h4> 5.3.2 <\\/h4>\\n<ul>\\n<li>Fix: Error caused when clicking on an image using touch devices and having the lightbox disabled for a feed.<\\/li>\\n<li>Fix: Shoppable feeds feature was missing some URLs in captions due to shortened image alt text<\\/li>\\n<\\/ul>\\n<h4> 5.3.1 <\\/h4>\\n<ul>\\n<li>Important: March 2 deadline for migrating to the new Instagram API pushed back to March 31.<\\/li>\\n<li>Fix: Error saving updated account information caused by emoji in account bio or in account names and MySQL tables that didn\'t have a UTF8mb4 character set.<\\/li>\\n<li>Fix: Touch devices will open the lightbox on first tap.<\\/li>\\n<li>Fix: Twitter &quot;Share&quot; button link was incorrect.<\\/li>\\n<li>Fix: Some links to Instagram were missing a backslash at the end of the URL causing a 301 redirect.<\\/li>\\n<\\/ul>\\n<h4> 5.3 <\\/h4>\\n<ul>\\n<li>Important: On March 31, Instagram will stop supporting its old API which will disrupt feeds created from personal connected accounts. If you are using a personal account, you will need to reconnect the account on the Instagram Feed Settings page. Please <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-march-2-2020\\/\\\">see here<\\/a> for more information.<\\/li>\\n<li>New: Support added for the new Instagram Basic Display API.<\\/li>\\n<li>New: Added PHP hooks \'sbi_before_feed\' and \'sbi_after_feed\' for displaying HTML before and after the main Instagram feed HTML.<\\/li>\\n<li>New: Added settings for adding a custom header avatar and custom header bio text. Go to the &quot;Customize&quot; tab &quot;Header&quot; area to set these or use customavatar=&quot;AVATAR URL&quot; or custombio=&quot;BIO TEXT&quot; in the shortcode.<\\/li>\\n<li>Tweak: Warnings and messages displaying on the front end of sites now display at the top of the feed.<\\/li>\\n<li>Tweak: Header templates changed to accommodate missing data if connected as a personal account to the new API.<\\/li>\\n<li>Tweak: Changes to feed.php, header.php, header-boxed.php, and item.php templates.<\\/li>\\n<li>Tweak: Added CSS to prevent some themes from adding box shadows and bottom border when hovering over the header.<\\/li>\\n<li>Tweak: Added code to clear page caching from Litespeed cache when clearing page caches with the plugin.<\\/li>\\n<li>Fix: Emoji in the first few characters of a caption would cause the main post image to switch to an emoji when loading more.<\\/li>\\n<li>Fix: Pagination for &quot;tagged&quot; feeds not working for certain accounts.<\\/li>\\n<\\/ul>\\n<h4> 5.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Changed screen reader and alt text to be more SEO friendly (change made to item.php template).<\\/li>\\n<li>Tweak: Added PHP hooks to use custom alt and screen reader text.<\\/li>\\n<li>Fix: Screen reader text would be visible if text was right aligned.<\\/li>\\n<li>Fix: Feeds were not updating when background caching used.<\\/li>\\n<li>Fix: Incorrect image resolution would be used when setting the image resolution to something other than auto.<\\/li>\\n<\\/ul>\\n<h4> 5.2.5 <\\/h4>\\n<ul>\\n<li>New: Added a close button for the share feature in the lightbox.<\\/li>\\n<li>New: Added aria-label attributes to SVGs for improved accessibility.<\\/li>\\n<li>Tweak: Removed Google Plus as a share option.<\\/li>\\n<li>Tweak: Error reporting improved. Information about errors encountered while retrieving posts now more concise.<\\/li>\\n<li>Fix: Improved reliability of touch detection for opening the lightbox with touch devices.<\\/li>\\n<li>Fix: Minified version of CSS file was not actually minified.<\\/li>\\n<\\/ul>\\n<h4> 5.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Check added to make sure sbiOwlCarousel was defined before using to show carousel posts in the lightbox added.<\\/li>\\n<li>Tweak: Added a default set of options of sb_instagram_js_options not defined on the page.<\\/li>\\n<li>Tweak: Added a text link in the settings page footer to our new free <a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/feeds-for-youtube\\/\\\">YouTube feed<\\/a> plugin<\\/li>\\n<li>Fix: Part of the next image in the carousel would display when opening carousel posts in the lightbox on slower networks.<\\/li>\\n<li>Fix: Added a workaround for error caused by videos in stories displayed in the lightbox not having thumbnails available.<\\/li>\\n<\\/ul>\\n<h4> 5.2.3 <\\/h4>\\n<ul>\\n<li>New: Added filter &quot;sbi_settings_pages_capability&quot; to change what permission is needed to access settings pages.<\\/li>\\n<li>Tweak: Better error messages for no posts being found and API request delays.<\\/li>\\n<li>Tweak: If &quot;Favor Local Images&quot; setting is in use, a 640px resolution image will be created for images coming from a personal account.<\\/li>\\n<li>Tweak: Better error recovery when image file not found when viewing the feed.<\\/li>\\n<li>Tweak: Added &quot;noreferrer&quot; to links found in the captions in the lightbox display.<\\/li>\\n<li>Tweak: Button and input field styling updated to look better with WordPress 5.3.<\\/li>\\n<li>Tweak: Updated language files for version 2.0+.<\\/li>\\n<li>Fix: Accounts that were connected prior to version 4.0 would not show the follow button if the header was not also displayed and would not retrieve comments to display in the lightbox. Visit the &quot;Configure&quot; tab to have the account automatically updated.<\\/li>\\n<li>Fix: Fixed incorrect URL for boxed-style header &quot;follow&quot; button.<\\/li>\\n<li>Fix: Clearing &quot;white lists&quot; would not work.<\\/li>\\n<li>Fix: Duplicate posts added to recent hashtag feeds when background caching enabled.<\\/li>\\n<li>Fix: MySQL error when retrieving resized images. Thanks <a href=\\\"https:\\/\\/github.com\\/the-louie\\\">the-louie<\\/a>!<\\/li>\\n<\\/ul>\\n<h4> 5.2.2 <\\/h4>\\n<ul>\\n<li>New: Added setting &quot;API request size&quot; on the &quot;Customize&quot; tab to allow requesting of more posts than are in the feed. Setting this to a high number will prevent no posts being found if you often post IG TV posts and use a personal account.<\\/li>\\n<li>Tweak: Removed width and height attributes from the image element in the feed to prevent notices about serving scaled images in optimization tools.<\\/li>\\n<\\/ul>\\n<h4> 5.2.1 <\\/h4>\\n<ul>\\n<li>Tweak: Resized images can be used in the page source code when &quot;Disable JS Image Loading&quot; setting is enabled.<\\/li>\\n<li>Fix: Full captions would always show when using the &quot;Disable JS Image Loading&quot; setting.<\\/li>\\n<li>Fix: Using the masonry layout and the &quot;Disable JS Image Loading&quot; setting would cause a duplicate image to display on top of the post image.<\\/li>\\n<li>Fix: Using a single column for mobile devices and the &quot;Highlight&quot; layout would cause images to display larger than the feed width.<\\/li>\\n<li>Fix: Map marker would display as a font icon instead of an SVG.<\\/li>\\n<li>Fix: Raw image file opening instead of lightbox for some sites after updating to version 5.2.<\\/li>\\n<\\/ul>\\n<h4> 5.2 <\\/h4>\\n<ul>\\n<li>New: New feed type &quot;Tagged&quot;. Show posts that your account has been &quot;tagged&quot; in on Instagram. Must have a connected business account to use this feed type.<\\/li>\\n<li>New: Added the ability to overwrite default templates in your theme. View <a href=\\\"https:\\/\\/smashballoon.com\\/guide-to-creating-custom-templates\\/\\\">this article<\\/a> for more information.<\\/li>\\n<li>New: Added several PHP hooks for modifying feeds settings and functionality.<\\/li>\\n<li>Tweak: Retrieving posts from recent hashtag feeds available only in cache made more lenient to accommodate minor changes in the feed settings.<\\/li>\\n<li>Fix: Using the &quot;Load Initial Posts with AJAX&quot; setting would cause images to not resize with the browser window.<\\/li>\\n<li>Fix: Added back language files for translations.<\\/li>\\n<li>Fix: Changing the image resolution setting would not change the image size.<\\/li>\\n<li>Fix: MySQL error when retrieving resized images.<\\/li>\\n<li>Fix: Follow button would not show if there was no connected account.<\\/li>\\n<li>Fix: Deleting any connected account will delete any connected accounts that have errors in the data that was saved for them.<\\/li>\\n<li>Fix: Masonry style layout would not adjust when caption was expanded.<\\/li>\\n<li>Fix: Moderation mode would open multiple feeds when used on a page that had multiple feeds.<\\/li>\\n<li>Fix: Adding a comma at the end of a list of words used in filters would cause the filter to not work properly.<\\/li>\\n<\\/ul>\\n<h4> 5.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Background caching randomizes which feeds are updated first to help with large amounts of cached feeds.<\\/li>\\n<li>Tweak: A delay will be triggered for future API requests when the HTTP request fails or Instgram API returns errors.<\\/li>\\n<li>Tweak: Invalid access token notices will automatically clear if a successful API request is made with one.<\\/li>\\n<li>Tweak: Code bypass added if Image Liquid or visibility change detection code is not defined due to multiple jQuery versions added to the page.<\\/li>\\n<li>Fix: Hashtag feeds with multiple hashtags not alternating in certain circumstances.<\\/li>\\n<li>Fix: PHP warning for using a static method improperly.<\\/li>\\n<li>Fix: Disabling Font Awesome would leave the CSS file for it enqueued.<\\/li>\\n<li>Fix: Minified version of JavaScript file is now used when the setting labeled &quot;Are you using an ajax theme?&quot; is enabled.<\\/li>\\n<li>Fix: Cache time when using page cache method was incorrect.<\\/li>\\n<li>Fix: Images in moderation mode would not be cropped squares.<\\/li>\\n<\\/ul>\\n<h4> 5.1.1 <\\/h4>\\n<ul>\\n<li>Fix: Background caching would not work for feeds with no shortcode arguments.<\\/li>\\n<li>Fix: A second connected business account would not always be used if the first account had reached the 30 hashtag per week limit.<\\/li>\\n<li>Tweak: Cache size capped at 200 to prevent PHP memory issues.<\\/li>\\n<li>Tweak: Widget name changed back to Instagram Feed.<\\/li>\\n<\\/ul>\\n<h4> 5.1 <\\/h4>\\n<ul>\\n<li>New: Posts can be loaded initially with an AJAX call. Can help keep feed updated when page caching also used. Enable on the &quot;Customize&quot; tab, &quot;Advanced&quot; sub-tab.<\\/li>\\n<li>Tweak: Using both includewords and excludewords in a feed will cause posts that include the includeword and do not include the excludeword to be included.<\\/li>\\n<li>Tweak: Caption length limit also applies to hover caption.<\\/li>\\n<li>Tweak: Non Instagram post items can be added to the feed without causing a JavaScript error.<\\/li>\\n<li>Tweak: Duplicate posts filtered out before displaying.<\\/li>\\n<li>Tweak: Bottom margin added to header when image padding is less than 10 pixels.<\\/li>\\n<li>Fix: Javascript error caused by feed being hidden initially and then becoming visible.<\\/li>\\n<li>Fix: Settings link not appearing on Plugins page where Instagram Feed Pro was listed.<\\/li>\\n<li>Fix: Invalid HTML caused by no space between attributes in the main sbi div.<\\/li>\\n<li>Fix: Use &quot;http&quot; for svg xlmns attribute.<\\/li>\\n<li>Fix: Lazy-loading plugins would sometimes cause the feed to load blank placeholder images.<\\/li>\\n<li>Fix: &quot;Disable JS Image Loading&quot; setting would break the lightbox.<\\/li>\\n<li>Fix: Incorrect image resolution or duplicate image files loaded on the page in FireFox.<\\/li>\\n<li>Fix: Filtering feeds by hashtag can use first author comment when also using a personal Instagram account.<\\/li>\\n<li>Fix: Line breaks not always showing in captions.<\\/li>\\n<li>Fix: Improved includewords and excludewords word\\/hashtag detection.<\\/li>\\n<li>Fix: Spaces between multiple includewords\\/excludewords would cause word\\/hashtag detection problems.<\\/li>\\n<li>Fix: More escaping when outputting html.<\\/li>\\n<li>Fix: PHP function &quot;wp_json_encode&quot; used instead of &quot;json_encode&quot; where applicable.<\\/li>\\n<li>Fix: Recent hashtag feeds would sometimes retrieve the same post multiple times from the database cache.<\\/li>\\n<\\/ul>\\n<h4> 5.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Fixed error from Instagram when connecting a personal account.<\\/li>\\n<\\/ul>\\n<h4> 5.0.3 <\\/h4>\\n<ul>\\n<li>Fix: Includewords and Excludewords settings were missing some matching words\\/hashtags in captions.<\\/li>\\n<li>Fix: &quot;Favor local images&quot; setting was sometimes causing the feed to not use the best image resolution available.<\\/li>\\n<\\/ul>\\n<h4> 5.0.2 <\\/h4>\\n<ul>\\n<li>Fix: Plugin not showing that an update is available on the Plugins page.<\\/li>\\n<li>Fix: Hahstags mixing latin and non-latin characters were not always working with includewords setting.<\\/li>\\n<li>Fix: Padding around images in FireFox not working for carousel feeds.<\\/li>\\n<li>Fix: Added back support for &quot;carousel=true&quot; in shortcodes to make carousel feeds.<\\/li>\\n<li>Fix: Using &quot;showheader=false&quot; would still add an empty header to the feed.<\\/li>\\n<li>Fix: Removed line breaks from html template to prevent odd issues in certain themes.<\\/li>\\n<li>Fix: Carousel arrows would not render as SVGs even when the font style was set to SVG.<\\/li>\\n<li>Fix: Mixed feeds would sometimes stop paginating when one of the users or hashtag endpoints ran out of new posts.<\\/li>\\n<\\/ul>\\n<h4> 5.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Likes counts not working for business feeds.<\\/li>\\n<li>Fix: Video thumbnails from non-resized images were causing related video not to open and play in lightbox.<\\/li>\\n<li>Fix: Medium resolution image being used in the lightbox for personal accounts when image resizing is enabled and no full size image was created.<\\/li>\\n<li>Fix: Removed error message on front-end when custom tables for resized image data are not existing.<\\/li>\\n<li>Fix: Location data not displaying on hover when enabled and available.<\\/li>\\n<li>Fix: Enqueue CSS file in shortcode setting not working properly.<\\/li>\\n<\\/ul>\\n<h4> 5.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>New: We\'ve rebuilt the plugin from the ground up with a focus on performance and reliability. Your feeds are now loaded from the server using PHP removing the reliance on AJAX.<\\/li>\\n<li>New: Local image storing expanded to include personal accounts. Use the &quot;Favor Local Images&quot; setting on the &quot;Customize&quot; tab, &quot;Advanced&quot; sub-tab to have the plugin use local images whenever available, thus removing reliance on the Instagram CDN.<\\/li>\\n<li>New: You can now set the plugin to check for new Instagram posts in the background rather than when the page loads by using the new &quot;Background caching&quot; option which utilizes the WordPress &quot;cron&quot; feature. Enable this using the &quot;Check for new posts&quot; setting on the &quot;Configure&quot; tab.<\\/li>\\n<\\/ul>\\n<h4> 4.1.5 <\\/h4>\\n<ul>\\n<li>Tweak: Store URL switched to https to prevent update error.<\\/li>\\n<li>Tweak: Code in SB_Instagram_Connected_Accounts class removed that was causing problems for some users. Site would crash intermittently with warning about php.ini settings.<\\/li>\\n<li>Fix: PHP warning when trying to count boolean related to an empty comment cache.<\\/li>\\n<li>Fix: While viewing a video in the lightbox, the lightbox would automatically go to the next slide when it finished.<\\/li>\\n<\\/ul>\\n<h4> 4.1.4 <\\/h4>\\n<ul>\\n<li>Fix: Welcome page updated to work with CSS changes in WordPress 5.2.<\\/li>\\n<li>Fix: Using &quot;Shoppable Feeds&quot; feature would cause images to disappear when the resolution of the images were raised.<\\/li>\\n<li>Fix: Recent hashtag feeds using multiple hashtags where some hashtags did not have many posts would show an incorrect number of images in the feed.<\\/li>\\n<\\/ul>\\n<h4> 4.1.3 <\\/h4>\\n<ul>\\n<li>Fix: Added check for WordPress version 3.4 to disable image resizing features.<\\/li>\\n<li>Fix: Recent hashtag feeds would display posts out of order if they shared saved posts from user feeds.<\\/li>\\n<li>Fix: Arbitrary API call was being made for user feeds with headers.<\\/li>\\n<\\/ul>\\n<h4> 4.1.2 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue caused by a bug in the Instagram API which was preventing some Instagram accounts from being able to be connected. If you experienced an issue connecting an Instagram account using the &quot;Personal&quot; option then please try again after updating.<\\/li>\\n<\\/ul>\\n<h4> 4.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Mediavine integration JavaScript added to a separate file instead of added to the source to allow for optimization plugins to work with the code.<\\/li>\\n<li>Fix: Header would be included in the feed the first time the feed loads for business feeds even if disabled.<\\/li>\\n<\\/ul>\\n<h4> 4.1 <\\/h4>\\n<ul>\\n<li>New: Instagram stories are now supported. If a story is available for a business user account, clicking the avatar in the user feed header will display the story. Disable this on the Customize tab, header options.<\\/li>\\n<li>New: If more than one unique business account is in use (is connected to a different Facebook page), more than 30 unique hashtags can be included in feeds during a week.<\\/li>\\n<li>New: Headers can be displayed outside of the scrollable area for feeds with a specific height set. Enable this on the Customize tab, header options.<\\/li>\\n<li>New: Added capability &quot;manage_instagram_feed_options&quot; to allow non-admins to manage Instagram Feed settings pages.<\\/li>\\n<li>New: Added a setting for multi-site super admins to hide the license tab from site admins. Enable this on the Customize tab, Advanced sub-tab.<\\/li>\\n<li>New: Added a setting to enable integration with Mediavine ad networks. If you are using Mediavine, enable this on the Customize tab, Advanced sub-tab.<\\/li>\\n<li>New: Added &quot;feedid&quot; setting to explicitly set a unique key for feed caching. When used this will help prevent cache conflicts when using similar includewords for multiple feeds are used.<\\/li>\\n<li>Tweak: Scaled images of 640 pixels are saved on the site\'s server for better optimization.<\\/li>\\n<li>Tweak: Error handling for broken image links added.<\\/li>\\n<li>Tweak: SVGs given attribute role=&quot;presentation&quot; instead of role=&quot;img&quot; for better accessibility.<\\/li>\\n<li>Tweak: sbi_photo elements given and aria label and the attribute role=&quot;img&quot; for improved accessibility.<\\/li>\\n<li>Tweak: License renewal notice now only visible for admin users.<\\/li>\\n<li>Tweak: Setting to disable the &quot;Welcome&quot; page redirect available. Enable this using the link on the &quot;Welcome&quot; page.<\\/li>\\n<li>Tweak: Video element hidden when transitioning slides when viewing posts in the lightbox.<\\/li>\\n<li>Fix: Quotes in the captions of recent hashtag feeds would break the caching features.<\\/li>\\n<li>Fix: Carousel feeds not displaying correctly for right-to-left sites.<\\/li>\\n<li>Fix: Follow button was not linking to user account under certain circumstances.<\\/li>\\n<li>Fix: Forced highlight and masonry feeds to use border-box box-sizing for sbi_item elements.<\\/li>\\n<li>Fix: Removed zoom effect for moderation mode.<\\/li>\\n<li>Fix: Forced the highlight offset setting to be an integer, ensuring that some posts are higlighted when using this feature.<\\/li>\\n<li>Fix: Spaces among user names when using shortcode settings would cause the feed to break.<\\/li>\\n<li>Fix: Resizing the screen while in moderation mode and also using the &quot;Shoppable Feeds&quot; feature would cause most images to disappear.<\\/li>\\n<\\/ul>\\n<h4> 4.0.9 <\\/h4>\\n<ul>\\n<li>Fix: Unable to connect new personal accounts due to changes with Instagram\'s API. Remote requests to connect accounts are now made server-side.<\\/li>\\n<li>Fix: User feeds where the username is the same as the hashtag for a recent hashtag feed would cause posts to appear out of order and for user feed posts to be included in the feed.<\\/li>\\n<\\/ul>\\n<h4> 4.0.8 <\\/h4>\\n<ul>\\n<li>Tweak: Source of scaled images changed from server resized images to images from Instagram\'s CDN.<\\/li>\\n<li>Tweak: Maximum number of posts data saved in the custom database tables raised from 150 to 1500.<\\/li>\\n<li>Tweak: Message added to the lightbox visible to admins when a video isn\'t able to be played, usually due to Instagram copyright restrictions.<\\/li>\\n<li>Fix: Some thumbnails were not displaying for video posts in hashtag feeds.<\\/li>\\n<li>Fix: Hashtag feeds carousel posts that included videos without video files available would cause a JavaScript error.<\\/li>\\n<li>Fix: Having a different number of posts displayed for mobile devices would not work with the initial post set cache.<\\/li>\\n<\\/ul>\\n<h4> 4.0.7 <\\/h4>\\n<ul>\\n<li>Tweak: Isotope JS code namespaced to prevent conflicts with other versions of Isotope.<\\/li>\\n<li>Fix: Duplicate images would be displayed in feed when displaying a user feed that has both a personal account and business account connected.<\\/li>\\n<li>Fix: Added rel=&quot;noopener&quot; attribute to all cross-origin links.<\\/li>\\n<li>Fix: Fewer images than expected would be displayed using the initial post set cache feature when the number of posts on desktop was different than the number of posts for mobile.<\\/li>\\n<li>Fix: Double quotes in the location data and backslashes at the end of a caption would cause the initial post set feature to break.<\\/li>\\n<li>Fix: No image would display when displaying a carousel type post that contained only videos.<\\/li>\\n<li>Fix: PHP error for multisite sites when creating a new sub-site and trying to create tables.<\\/li>\\n<\\/ul>\\n<h4> 4.0.6 <\\/h4>\\n<ul>\\n<li>Fix: Hashtag feeds were not displaying for certain accounts due to an Instagram API bug. If you see the message &quot;The requested resource does not exist&quot; when trying to display a Hashtag feed, please go to the &quot;Configure&quot; tab and reconnect all of your business accounts using the blue &quot;Connect an Instagram Account&quot; button.<\\/li>\\n<li>Fix: Pop-up modal will now scroll when connecting a large amount of Business accounts on the Configure tab.<\\/li>\\n<li>Fix: &quot;Mixed&quot; feeds and feeds with multiple hashtags would not work or would display fewer posts than expected.<\\/li>\\n<li>Fix: Filtering a User feed by a hashtag or word will work better for feeds that use the hashtag or word infrequently.<\\/li>\\n<li>Fix: Feed would break when using the shoppable feeds feature with a Hashtag feed that contained a video with no thumbnail available.<\\/li>\\n<\\/ul>\\n<h4> 4.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: More information displayed when there is an error connecting business accounts on the Configure tab.<\\/li>\\n<li>Tweak: Image resizing aborted in the event that the WordPress image editor code returns an error.<\\/li>\\n<li>Fix: Feed not displaying when admin-ajax requests had space added by other plugins or themes.<\\/li>\\n<li>Fix: Double quotes in parts of the header data would cause a JSON parsing error for initial page cache feature.<\\/li>\\n<li>Fix: 404 error displaying for hammer.js code in Safari.<\\/li>\\n<\\/ul>\\n<h4> 4.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Business accounts with periods in the user names were causing the token to appear invalid<\\/li>\\n<li>Fix: Custom database tables can now be installed using a network activate for multisite installations<\\/li>\\n<\\/ul>\\n<h4> 4.0.3 <\\/h4>\\n<ul>\\n<li>Fix: &quot;Initial Post Set Cache&quot; feature would not load the feed under certain circumstances<\\/li>\\n<li>Fix: Manually connecting Business Profiles is now possible. Enter the Access Token and then the User ID in the respective fields on the &quot;Configure&quot; tab.<\\/li>\\n<\\/ul>\\n<h4> 4.0.2 <\\/h4>\\n<ul>\\n<li>Fix: Index for feed_id column was too large for certain MySQL servers\\/settings preventing the new database tables from being created<\\/li>\\n<li>Fix: Less than and greater than symbols (&quot;&lt;&quot;,&quot;&gt;&quot;) causing JSON decoding issues and preventing the initial page cache from being set<\\/li>\\n<li>Fix: Fixed error &quot;Unable to decrypt access token&quot; occurring in certain circumstances<\\/li>\\n<li>Fix: Unable to add or remove user accounts to primary feeds in Firefox<\\/li>\\n<\\/ul>\\n<h4> 4.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Using the setting &quot;Are you using an AJAX theme?&quot; was causing a JavaScript error<\\/li>\\n<li>Fix: Fixed an issue with single quotes in the initial feed JSON data<\\/li>\\n<li>Fix: Added a missing comma in the feed options array<\\/li>\\n<\\/ul>\\n<h4> 4.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>Important: On December 11, Instagram will be making some major platform changes which will disrupt Location feeds, Single Post feeds, and Hashtag feeds. Please <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-dec-11-2018\\/\\\">see here<\\/a> for more information.<\\/li>\\n<li>New: Support for connecting Instagram Business Profiles on the Configure tab. After December 11, 2018, Hashtag feeds will require a Business Profile to be connected. <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-business-profiles\\/\\\">More information<\\/a><\\/li>\\n<li>New: Hashtag feeds can now be ordered by \'Top posts\' or \'Most recent\'. This can be configured on the plugin settings page \'Hashtag\' settings, or in the shortcode: order=recent.<\\/li>\\n<li>New: When selecting \'Most recent\' Instagram will only return posts from the past 24 hours, however, the plugin will store these posts so that they can continue to be displayed indefinitely, creating a permanent feed of your posts.<\\/li>\\n<li>New: A limit of 30 unique hashtags per Business Profile can be queried per 7 day rolling period.<\\/li>\\n<li>New: Usernames and dates are no longer available for hashtag posts. <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-dec-11-2018\\/\\\">More information<\\/a><\\/li>\\n<li>New: Images which are only available in full size are downsized and stored on your server. This feature is automatically enabled for any feed which uses Instagram\'s new API, but can be disabled in the following location: Instagram Feed &gt; Customize &gt; Advanced &gt; Misc &gt; Image Resizing.<\\/li>\\n<li>New: Post data is now stored in a custom table in your database for greater flexibility in future updates.<\\/li>\\n<li>Tweak: Ajax requests are reduced in order to decrease feed load times and reduce the amount of resources used.<\\/li>\\n<\\/ul>\\n<h4> 3.0.6 <\\/h4>\\n<ul>\\n<li>Important: On December 11, Instagram will be making some major platform changes which will disrupt Location feeds, Single Post feeds, and Hashtag feeds. Please <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-dec-11-2018\\/\\\">see here<\\/a> for more information. We are working hard on a plugin update which will be released prior to December 11 and include support for the new Hashtag API, along with directions on how to transition to it in order to avoid any disruption in your Hashtag feeds.<\\/li>\\n<li>Fix: Fixed an issue with spaces in the \'includewords\' filter setting<\\/li>\\n<li>Fix: Fixed an issue with email &quot;mailto&quot; links in captions<\\/li>\\n<\\/ul>\\n<h4> 3.0.5 <\\/h4>\\n<ul>\\n<li>Fix: An &quot;Unexpected end of JSON input&quot; error was occurring on certain servers due to an issue with the name of the header cache<\\/li>\\n<li>Fix: The &quot;Moderation Type&quot; setting was not saving successfully on the settings page<\\/li>\\n<\\/ul>\\n<h4> 3.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Japanese characters in hashtags were not working with the &quot;includewords&quot; filtering setting<\\/li>\\n<li>Fix: Fixed a bug caused by the previous updated which was causing the Masonry layout to display all posts at the same height<\\/li>\\n<li>Fix: Fixed a rare issue where certain settings wouldn\'t be saved when using the &quot;Preserve settings when plugin is removed&quot; option<\\/li>\\n<li>Fix: Fixed a formatting issue in the System Info<\\/li>\\n<\\/ul>\\n<h4> 3.0.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added a setting to enqueue the JavaScript file for the plugin in the page header rather than the footer.<\\/li>\\n<li>Fix: Updating the plugin with the carousel setting enabled by default would cause the new layout settings to not be changeable.<\\/li>\\n<li>Fix: Fixed an issue where the Load More button would disappear if all posts for a feed were cached.<\\/li>\\n<\\/ul>\\n<h4> 3.0.2 <\\/h4>\\n<ul>\\n<li>Fix: PHP warning if settings on the &quot;Customize&quot; tab were never saved.<\\/li>\\n<li>Fix: Hashtags the included uppercase letters were not working with the &quot;show posts that contain these words or hashtags&quot; setting.<\\/li>\\n<li>Tweak: Updated the plugin updater class to the latest version<\\/li>\\n<\\/ul>\\n<h4> 3.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Error caused by not including the &quot;#&quot; for a mixed feed type that includes hashtags.<\\/li>\\n<li>Fix: Disabling mobile swipe code would cause an error.<\\/li>\\n<li>Fix: Using the line break caption adjustment setting with the &quot;Are you using an AJAX theme?&quot; setting would cause an error.<\\/li>\\n<\\/ul>\\n<h4> 3.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>New: Masonry layout - Display your posts in their uncropped portrait or landscape aspect ratios with no vertical space between posts.<\\/li>\\n<li>New: Highlight layout - Highlight\\/enlarge specific posts in your feed in a number of ways: based on a set pattern, using specific post IDs, or based on a specific hashtag in the caption. For example, you could set the plugin to highlight any posts which include the hashtag of #highlight.<\\/li>\\n<li>New: Additional options for carousel feeds including a 2-row layout and infinite looping.<\\/li>\\n<li>New: &quot;Mixed&quot; feed type allows you to display feeds of multiple types in a single feed. Set the username\\/hashtag\\/post ID\\/location in the shortcode with the type set to &quot;mixed&quot; e.g. [instagram-feed type=mixed hashtag=&quot;#awesomeplugins&quot; user=&quot;smashballoon&quot;].<\\/li>\\n<li>New: More customizable header layouts and sizes. You can now center the avatar and account information above your feed as well as choose from three sizes: small, medium, and large.<\\/li>\\n<li>New: We\'ve made improvements to the way photos are loaded into the feed, adding a smooth transition to display photos subtly rather than suddenly. We\'ve also made enhacements to other interactive elements - such as hovering over a photo or using the carousel - to create a more refined experience.<\\/li>\\n<li>Tweak: Settings area has been reorganized to make finding and setting your options faster and more intuitive.<\\/li>\\n<li>Tweak: &quot;includewords&quot; setting will now search through author comments to detect hashtags.<\\/li>\\n<li>Tweak: Automatic image resolution detection setting now works better with wide images. Resizing the browser will now automatically raise the image resolution if needed.<\\/li>\\n<li>Tweak: Character limit will now adjust based on the number of line breaks in the caption. This can be disabled on the &quot;Advanced&quot; tab.<\\/li>\\n<li>Fix: Hashtags containing cyrillic characters were not working with the &quot;includewords&quot; feature.<\\/li>\\n<li>Fix: Desktop touch screens were not properly detected.<\\/li>\\n<\\/ul>\\n<h4> 2.11 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an occasional issue with the Instagram login flow which would result in an &quot;Unauthorized redirect URL&quot; error<\\/li>\\n<li>Fix: Fixed an issue with the &quot;Remove&quot; button not working reliably when removing connected accounts<\\/li>\\n<li>Tweak: Added nonces to the admin settings<\\/li>\\n<\\/ul>\\n<h4> 2.10 <\\/h4>\\n<ul>\\n<li>New: Retrieving Access Tokens and connecting multiple Instagram accounts is now easier using our improved interface for managing account information. While on the Configure tab, click on the big blue button to connect an account, or use the &quot;Manually Connect an Account&quot; option to connect one using an existing Access Token. Once an account is connected, you can use the associated buttons to either add it to your primary User feed or to a different feed on your site using the <code>user<\\/code> shortcode option, eg: <code>user=smashballoon<\\/code>.<\\/li>\\n<li>Tweak: Disabled auto load in the database for backup caches and white lists<\\/li>\\n<li>Fix: Fixed a issue where comments could display potentially harmful HTML - Thanks Jonas Carlsson from Sweden!<\\/li>\\n<li>Fix: Removed code and support for using user names in user ID settings. Will now default to the user ID attached to the Access Token.<\\/li>\\n<li>Fix: Carousel feeds not working for right to left languages<\\/li>\\n<li>Fix: Comments not being retrieved with the correct Access Token<\\/li>\\n<li>Fix: Automatic loading of more posts on scroll disabled for carousel feeds<\\/li>\\n<li>Fix: Using a percent for the image padding was causing the height of images to be to tall<\\/li>\\n<\\/ul>\\n<h4> 2.9.7 <\\/h4>\\n<ul>\\n<li>Fix: Fixed and issue with new comments not being retrieved<\\/li>\\n<li>Fix: Access Tokens may have been incorrectly saved as invalid under certain circumstances<\\/li>\\n<\\/ul>\\n<h4> 2.9.6 <\\/h4>\\n<ul>\\n<li>Tweak: Setting &quot;Cache Error API Recheck&quot; enabled by default for new installs<\\/li>\\n<li>Tweak: Added back ability to show caption on the right side of the lightbox and avatars for user feeds in lightbox<\\/li>\\n<li>Fix: Page caches created with the WP Rocket plugin will be cleared when the Instagram Feed settings are updated or the cache is forced to clear<\\/li>\\n<li>Fix: Fixed a rare issue where feeds were displaying &quot;Looking for cache that doesn\'t exist&quot; when page caching was not being used<\\/li>\\n<\\/ul>\\n<h4> 2.9.5 <\\/h4>\\n<ul>\\n<li>Important: Due to <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-api-changes-april-4-2018\\/\\\">recent changes<\\/a> in the Instagram API it is no longer possible to display photos from other Instagram accounts which are not your own. You can only display the user feed of the account which is associated with your Access Token.<\\/li>\\n<li>New: Added an Access Token shortcode option and support for multiple Access Tokens. If you own multiple Instagram accounts then you can now use multiple Access Tokens in order to display user feeds from each account, either in separate feeds, or in the same feed. Just use the <code>accesstoken<\\/code> shortcode option. See <a href=\\\"https:\\/\\/smashballoon.com\\/display-multiple-instagram-feeds\\/#multiple-user-feeds\\\">this FAQ<\\/a> for more information on displaying multiple User feeds.<\\/li>\\n<\\/ul>\\n<h4> 2.9.4 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue caused by the last update where the Load More button would skip some posts<\\/li>\\n<li>Fix: No source in video element in the lightbox causing an error in IE<\\/li>\\n<li>Fix: Combination of a page cache, user feed header, and setting &quot;Cache Error API Recheck&quot; causing header to not display<\\/li>\\n<li>Fix: Having more than one of the same feeds on the same page would sometimes cause the second feed not to load<\\/li>\\n<\\/ul>\\n<h4> 2.9.3 <\\/h4>\\n<ul>\\n<li>Fix: Fixed duplicating images in certain feeds<\\/li>\\n<li>Fix: Includewords code missing non-hashtag words after a line break<\\/li>\\n<\\/ul>\\n<h4> 2.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Lightbox given a fixed position for large screens. Scrolling the browser window will no longer scroll the lightbox on desktop devices.<\\/li>\\n<li>Tweak: Enabling &quot;Cache Error API Recheck&quot; setting will cause feeds to always assume a cache exists and will create one if one doesn\'t exist.<\\/li>\\n<li>Tweak: Custom image sizes no longer supported by Instagram. This feature will be unavailable for now.<\\/li>\\n<li>Fix: Added icon source setting for AJAX themes<\\/li>\\n<li>Fix: Fixed incorrectly sized images when mobile columns set to &quot;1&quot;<\\/li>\\n<li>Fix: SVG icons box-sizing set to &quot;unset&quot; to prevent issues with SVG icon sizes<\\/li>\\n<li>Fix: Hover background moved farther to the foreground to prevent rare issue with it not displaying<\\/li>\\n<li>Fix: Auto load more on scroll was causing problems for other features on sites that are triggered by scrolling<\\/li>\\n<li>Fix: Extra check added to prevent infinite loop of displaying welcome screen when installing the plugin<\\/li>\\n<li>Fix: Fixed links breaking for hashtags with underscores in the lightbox<\\/li>\\n<\\/ul>\\n<h4> 2.9.1 <\\/h4>\\n<ul>\\n<li>New: Added &quot;alt&quot; tags to lightbox images and screen reader text for improved accessibility<\\/li>\\n<li>Fix: SVG icons not displaying correctly in IE11<\\/li>\\n<li>Fix: Fixed a potential security vulnerability<\\/li>\\n<\\/ul>\\n<h4> 2.9 <\\/h4>\\n<ul>\\n<li>New: Added a permanent feed option. Permanent feeds are useful if you have a feed with a group of posts which never needs to be updated. It creates a permanent record of the feed for optimal performance. Use the shortcode setting &quot;permanent&quot; if a feed never needs to be updated: <code>[instagram-feed permanent=\\\"true\\\"]<\\/code>.<\\/li>\\n<li>New: Added backup caching for all feeds. If the feed is unable to display or too many posts are being filtered out, a backup feed will be shown to visitors if a backup cache is available.<\\/li>\\n<li>New: Added setting in moderation mode to make a &quot;white list&quot; feed permanent. Check the box labeled &quot;This is a permanent white list (never needs to update)&quot; when creating a &quot;white list&quot;.<\\/li>\\n<li>New: Icons are now generated as SVGs for a sharper look and more semantic markup.<\\/li>\\n<li>New: Added support for translating the post date and the word &quot;Share&quot; in the lightbox.<\\/li>\\n<li>New: Added a setting to the Misc section to disable jQuery mobile code. This will fix issues with jQuery versions 2.x or later.<\\/li>\\n<li>New: Added support for running custom JavaScript code when the lightbox is launched<\\/li>\\n<li>Tweak: Added CSS to remove borders underneath links in the feed which were added by some themes.<\\/li>\\n<li>Tweak: Updating or installing the plugin will automatically clear the cache in popular page caching plugins and JavaScript optimizing plugins.<\\/li>\\n<\\/ul>\\n<h4> 2.8.3 <\\/h4>\\n<ul>\\n<li>New: Added config file for WPML compatibility. Display your feed on your multi-language sites <a href=\\\"https:\\/\\/wpml.org\\/\\\">WPML website<\\/a><\\/li>\\n<li>New: Added translation files for Danish (da_DK), Finnish (fi_FL), Japanese (ja_JP), Norwegian (nn_NO), Portuguese (pt_PT), and Swedish (sv_SE) to translate &quot;Load More...&quot; and &quot;Follow on Instagram&quot;<\\/li>\\n<li>Fix: Bug with linking random text in captions in the lightbox.<\\/li>\\n<li>Fix: Carousel feeds were not displaying properly when resizing the browser window from desktop to mobile width.<\\/li>\\n<\\/ul>\\n<h4> 2.8.2 <\\/h4>\\n<ul>\\n<li>Fix: Directions for a single post feed were not opening on the &quot;Configure&quot; tab.<\\/li>\\n<li>Fix: Carousel post types in the lightbox would not play the 2nd video in the carousel.<\\/li>\\n<li>Fix: Regular expression to add links to hashtags, websites, and mentions in the caption of the lightbox is improved.<\\/li>\\n<\\/ul>\\n<h4> 2.8.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed carousel feeds with mobile columns set to &quot;auto&quot; not showing images at their proper size.<\\/li>\\n<\\/ul>\\n<h4> 2.8 <\\/h4>\\n<ul>\\n<li>New: You can now choose to set the number of columns and posts to use for mobile, which allows you to decide how your Instagram feed is displayed across all devices. You can find these settings by navigating to <code>Customize &gt; Layout<\\/code>, and clicking on <code>Show Mobile Options<\\/code> under the respective setting, or you can use the following shortcode options: <code>colsmobile=3 nummobile=9<\\/code><\\/li>\\n<li>New: Visitors to your site can now trigger the loading of more posts as they scroll down your feed. Enable this for all feeds by using the setting located at <code>Customize &gt; Autoscroll Load More<\\/code>, or apply this to a specific feed using the shortcode option: <code>autoscroll=true<\\/code><\\/li>\\n<li>New: It\'s now easier to collect post IDs for creating single post feeds as they can be displayed underneath posts while viewing a feed in &quot;Moderation Mode&quot;. To view the ID for a post, enable &quot;Moderation Mode&quot; for your feed and simply check the box labeled &quot;Show post ID under image&quot;.<\\/li>\\n<li>Tweak: Added an icon to carousel posts to let visitors know that it\'s a carousel<\\/li>\\n<li>Fix: Fixed an issue where the video would not play when the first slide in a carousel post was a video<\\/li>\\n<\\/ul>\\n<h4> 2.7 <\\/h4>\\n<ul>\\n<li>New: &quot;Custom Image Sizes&quot; now available for use in your feeds. These are available image resolutions not officially supported by Instagram. To use them, go to the &quot;Customize&quot; tab and check the box to &quot;Use a Custom Image Size&quot;. You can then select from the revealed dropdown menu.<\\/li>\\n<li>New: Private feeds and single posts from private feeds will not break a feed but instead display a message to logged-in admins and exclude the private data<\\/li>\\n<li>Tweak: Lightbox moved farther to the foreground to prevent an issue with the navigation menu covering the lightbox in certain themes<\\/li>\\n<li>Tweak: Several images in the plugin have been optimized to reduce file size<\\/li>\\n<li>Tweak: Welcome page now only displayed for major updates<\\/li>\\n<li>Fix: Refactored code that was causing a false positive in a security plugin<\\/li>\\n<li>Fix: Carousel &quot;slideshow&quot; posts are still included in feeds which are set to only display photos<\\/li>\\n<li>Fix: Fixed missing &quot;media&quot; attribute in CSS file inclusion code<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with videos in slideshow posts<\\/li>\\n<\\/ul>\\n<h4> 2.6 <\\/h4>\\n<ul>\\n<li>New: Added translation files for French (fr_FR), German (de_DE), English (en_EN), Spanish (es_ES), Italian (it_IT), and Russian (ru_RU) to translate &quot;Load More...&quot; and &quot;Follow on Instagram&quot;<\\/li>\\n<li>New: Instagram &quot;Slideshow&quot; posts are now supported. When viewing a slideshow post in the popup lightbox you can now scroll through to view the other images.<\\/li>\\n<li>Tweak: The lightbox navigation arrows have been moved outside of the image area to make room for slideshow posts and closer emulate the lightbox on Instagram<\\/li>\\n<li>Tweak: Font Awesome stylesheet handle has been renamed so it will only be loaded once if Custom Facebook Feed is also active<\\/li>\\n<li>Tweak: Removed query string at the end of the Font Awesome css file when being included on the page<\\/li>\\n<li>Fix: Undeclared variables in the JavaScript file now declared for strict mode compatibility<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Fix: Feed cache was being assigned to the header cache under certain conditions causing the header to show as &quot;undefined&quot;<\\/li>\\n<li>Fix: Php notice when saving moderation mode settings without any blocked users<\\/li>\\n<\\/ul>\\n<h4> 2.5 <\\/h4>\\n<ul>\\n<li>New: Added a workaround for an issue caused by some caching plugins. Enabling the &quot;Force cache to clear on interval&quot; setting on the &quot;Customize&quot; tab will now clear the page cache in some of the major caching plugins when the Instagram feed updates.<\\/li>\\n<li>Tweak: Reduced Ajax calls made by the plugin to one per feed to retrieve cached data<\\/li>\\n<li>Tweak: The plugin JavaScript file is now only included on pages where the feed is displayed, and a setting has been added to only load the CSS file on pages where the feed is displayed<\\/li>\\n<li>Tweak: Access token is now automatically saved if retrieved with the button on the &quot;configure&quot; tab<\\/li>\\n<li>Tweak: Changed how the caching errors caused by page caching plugins are handled<\\/li>\\n<li>Tweak: If you\'re using an Ajax theme and calling the plugin\'s <code>sbi_init()<\\/code> function when the page content loads then we advise updating this to add a caching parameter. See <a href=\\\"https:\\/\\/smashballoon.com\\/my-photos-dont-show-up-sometimes-unless-i-refresh-my-page-ajax-theme\\/\\\">this page<\\/a> for how you can update any custom code to take advantage of this.<\\/li>\\n<li>Fix: Improved sanitization and validation of data to be cached before saving to the database<\\/li>\\n<li>Fix: Added workaround for jQuery 3.0+ breaking jQuery mobile code<\\/li>\\n<li>Fix: Added space between an attribute to make feed html valid<\\/li>\\n<\\/ul>\\n<h4> 2.4.2 <\\/h4>\\n<ul>\\n<li>Fix: Using the &quot;Load More&quot; button in moderation mode would cause the moderation settings to submit more than once under certain circumstances.<\\/li>\\n<\\/ul>\\n<h4> 2.4.1 <\\/h4>\\n<ul>\\n<li>Fix: When used in conjunction with plugins that concatenate\\/minify\\/cache JavaScript the feed would sometimes load photos multiple times when certain settings were used. A setting was added to provide a workaround for cached pages as an option in the &quot;Misc&quot; section of the plugin\'s &quot;Customize&quot; tab.<\\/li>\\n<li>Fix: Fixed a bug caused when the HTML element that the Instagram Feed is inside doesn\'t have a class on it<\\/li>\\n<li>Fix: Fixed a JavaScript error that occurred in the lightbox when a post has no caption<\\/li>\\n<\\/ul>\\n<h4> 2.4 <\\/h4>\\n<ul>\\n<li>New: Added a visual moderation system (moderation mode) to allow you to create feeds of approved posts, block users, and remove specific posts from your feeds. Enable this feature on the &quot;Customize&quot; tab or add this to your shortcode: <code>[instagram-feed moderationmode=\\\"true\\\"]<\\/code>. Then click the \'moderate feed\' button on the front end of your site. For further information, see <a href=\\\"https:\\/\\/smashballoon.com\\/guide-to-moderation-mode\\/\\\">these directions<\\/a>.<\\/li>\\n<li>New: Comments for individual posts are now available to be displayed in the lightbox. Enable this on the &quot;Customize&quot; tab or by adding this to your shortcode: <code>[instagram-feed lightboxcomments=\\\"true\\\"]<\\/code>. The number of comments shown can be changed as well: <code>[instagram-feed numcomments=\\\"10\\\"]<\\/code>.<\\/li>\\n<li>New: Create a &quot;Shoppable&quot; feed using links in the captions of your Instagram posts. Check the box next to this setting on the &quot;Customize&quot; tab or add this to the shortcode: <code>[instagram-feed captionlinks=\\\"true\\\"]<\\/code>. This requires an extra step when you post to Instagram. For further information, see <a href=\\\"https:\\/\\/smashballoon.com\\/make-a-shoppable-feed\\/\\\">these directions<\\/a>.<\\/li>\\n<li>New: Ability to show posts only from a specific user. Add a user to the setting on the &quot;Customize&quot; tab or add this to the shortcode: <code>[instagram-feed showusers=\\\"smashballoon\\\"]<\\/code>.<\\/li>\\n<li>Tweak: Improved hashtag detection of the &quot;includewords&quot; setting<\\/li>\\n<li>Fix: Spaces in the shortcode were causing issues for &quot;single&quot; feeds<\\/li>\\n<li>Fix: Removed padding on the &quot;load more&quot; button if it is hidden in the feed<\\/li>\\n<li>Fix: The first hashtag was not always being made into a link in the lightbox<\\/li>\\n<li>Fix: Lightboxes are now separated when there are more than one of them on the page<\\/li>\\n<li>Fix: Pagination would sometimes break for multiple user\\/location\\/hashtag feeds<\\/li>\\n<\\/ul>\\n<h4> 2.3.1 <\\/h4>\\n<ul>\\n<li>Fix: Instagram\'s new &quot;Slideshow&quot; post feature isn\'t supported yet by their API and so this was causing an error in feeds that included them. This error has been fixed but as Instagram hasn\'t yet added support in their API for slideshow posts then the plugin isn\'t able to display them. Once they add support then it will be added into the plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.3 <\\/h4>\\n<ul>\\n<li>New: Added the ability to display a feed of specific posts. You can do this by using the <code>single<\\/code> shortcode setting. First set the feed type to be &quot;single&quot;, then paste the ID of the post(s) into the single shortcode setting, like so: <code>[instagram-feed type=\\\"single\\\" single=\\\"sbi_1349591022052854916_10145706\\\"]<\\/code>. For further information, see <a href=\\\"https:\\/\\/smashballoon.com\\/how-do-i-create-a-single-post-feed\\/\\\">these directions<\\/a>.<\\/li>\\n<li>New: We\'ve added a widget with the &quot;Instagram Feed&quot; label so that you no longer need to use the default &quot;Text&quot; widget<\\/li>\\n<li>Tweak: Addressed an occasional error with includewords\\/excludewords setting<\\/li>\\n<li>Tweak: Added commas to large numbers<\\/li>\\n<li>Tweak: When displaying photos by random the plugin will now randomize from the last 33 posts for unfiltered feeds rather than just randomizing the posts shown in the feed<\\/li>\\n<li>Tweak: User names can now be used instead of user ids for user feeds<\\/li>\\n<li>Fix: International characters are now supported in includewords\\/excludewords settings<\\/li>\\n<li>Fix: Fixed an undefined constant warning<\\/li>\\n<\\/ul>\\n<h4> 2.2.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added a setting to disable the icon font used in the plugin<\\/li>\\n<li>Tweak: The &quot;Include words&quot; filtering option now only returns posts for an exact match instead of fuzzy matching<\\/li>\\n<li>Tweak: Change Instagram link to go to https<\\/li>\\n<li>Tweak: Added coordinates as attributes to the location element<\\/li>\\n<li>Fix: Fixed an issue with the Instagram image URLs which was resulting in inconsistent url references in some feeds<\\/li>\\n<li>Fix: Fixed an imcompatibility issue the MediaElement.js plugin<\\/li>\\n<li>Fix: Fixed an issue with videos not pausing in the lightbox when navigating using the keyboard arrows<\\/li>\\n<\\/ul>\\n<h4> 2.2 <\\/h4>\\n<ul>\\n<li><strong>IMPORTANT: Due to the recent Instagram API changes, in order for the Instagram Feed plugin to continue working after June 1st you must obtain a new Access Token by using the Instagram button on the plugin\'s Settings page.<\\/strong> This is required even if you recently already obtained a new token. Apologies for any inconvenience.<\\/li>\\n<\\/ul>\\n<h4> 2.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Updated the Instagram icon to match their new branding<\\/li>\\n<li>Tweak: Added a help link next to the Instagram login button in case there\'s an issue using it<\\/li>\\n<li>Fix: Updated the Font Awesome icon font to the latest version: 4.6.3<\\/li>\\n<\\/ul>\\n<h4> 2.1 <\\/h4>\\n<ul>\\n<li>Compatible with Instagram\'s new API changes effective June 1st<\\/li>\\n<li>New: Added the ability to display posts that your user has &quot;liked&quot; on Instagram. Thanks to Anders Hjort Straarup for his code contribution.<\\/li>\\n<li>New: Added a setting to allow you to use a fixed pixel width for the feed on desktop but switch to a 100% width responsive layout on mobile<\\/li>\\n<li>Tweak: Added a width and height attribute to the images to help improve Google PageSpeed score<\\/li>\\n<li>Tweak: When a feed contains posts from multiple hashtags then all of the hashtags are listed in the feed header<\\/li>\\n<li>Tweak: Allow users with WordPress &quot;Editor&quot; role to be able to moderate images in the feed<\\/li>\\n<li>Tweak: Added descriptive error messages<\\/li>\\n<li>Tweak: A few minor UI tweaks on the settings pages<\\/li>\\n<li>Fix: Hashtags which include foreign characters are now linked correctly<\\/li>\\n<li>Fix: Fixed an issue with the <code>showfollowers<\\/code> shortcode option<\\/li>\\n<li>Fix: Fixed an issue with the carousel shortcode setting not working reliably<\\/li>\\n<li>Fix: Fixed an issue with the carousel script firing too soon when multiple API requests were required to fill the feed<\\/li>\\n<li>Misc bug fixes<\\/li>\\n<\\/ul>\\n<h4> 2.0.4.2 <\\/h4>\\n<ul>\\n<li>Fix: Fixed a JavaScript error in the admin area when using WordPress 4.5<\\/li>\\n<\\/ul>\\n<h4> 2.0.4.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with images in carousels not scaling correctly on mobile<\\/li>\\n<li>Fix: Fixed an issue with the lightbox breaking when an image didn\'t have a caption<\\/li>\\n<\\/ul>\\n<h4> 2.0.4 <\\/h4>\\n<ul>\\n<li>Fix: Fixed a bug which was causing the height of the photos to be shorter than they should have been in some themes<\\/li>\\n<li>Fix: Fixed an issue where when a feed was initially hidden (in a tab, for example) then the photo resolution was defaulting to \'thumbnail\'<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue which was setting the visibility of some photos to be hidden in certain browsers<\\/li>\\n<li>Fix: The new square photo cropping is no longer being applied to feeds displaying images at less than 150px wide as the images from Instagram at this size are already square cropped<\\/li>\\n<li>Fix: Fixed a JavaScript error in Internet Explorer 8 caused by the \'addEventListener\' function not being supported<\\/li>\\n<li>Note: If you notice any other bugs then please let us know so we can get them fixed right away. Thanks!<\\/li>\\n<\\/ul>\\n<h4> 2.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added an option to force the plugin cache to clear on an interval if it isn\'t automatically clearing as expected<\\/li>\\n<li>Fix: Fixed an issue where photo wouldn\'t appear in the Instagram feed if it was initially being hidden<\\/li>\\n<li>Fix: Fixed an issue where the new image cropping fuction was failing to run on some sites and causing the images to appear as blank<\\/li>\\n<li>Fix: Fixed a bug where stray commas at the beginning or end of lists of IDs or hashtags would cause an error<\\/li>\\n<li>Fix: Removed the document ready function from around the plugin\'s initiating function so that it can be called externally if needed<\\/li>\\n<\\/ul>\\n<h4> 2.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with the number of likes and comments not showing over the photo when selected<\\/li>\\n<li>Fix: Fixed an issue with the carousel navigation arrows not being correctly aligned vertically when the caption was displayed beneath the photos<\\/li>\\n<li>Fix: The icons in the header for the number of photos and followers are now the right way around<\\/li>\\n<\\/ul>\\n<h4> 2.0 <\\/h4>\\n<ul>\\n<li><strong>MAJOR UDPATE<\\/strong><\\/li>\\n<li>New: Completely rebuilt the core of the plugin to drastically improve the flexibility of the plugin and allow us to add some new post filtering options<\\/li>\\n<li>New: Added caching to minimize Instagram API requests<\\/li>\\n<li>New: Added a new Carousel feature which allows you to create awesome, customizable, and responsive carousels out of your Instagram feeds. Includes the ability to display navigation arrows, pagination, or enable autoplay. Use the Carousel settings on the plugin\'s Customize page or enable the carousel directly in your shortcode by using <code>carousel=true<\\/code>. See <a href=\\\"\\/\\/smashballoon.com\\/instagram-feed\\/demo\\/carousel\\/&#039;\\\">here<\\/a> for an example of the carousel in action.<\\/li>\\n<li>New: You can now display photos from location ID. Use the field on the plugin\'s Settings page or the following shortcode options: <code>type=location location=213456451<\\/code>.<\\/li>\\n<li>New: Display photos by location coordinates. Use the field on the plugin\'s Settings page or the following shortcode options: <code>type=coordinates coordinates=\\\"(25.76,-80.19,500)\\\"<\\/code>. See the directions on the plugin\'s Settings page for help on how to find coordinates.<\\/li>\\n<li>New: If you have uploaded a photo in portrait or landscape then the plugin will now display the square cropped version of photo in your feed and the full landscape\\/portrait image in the pop-up lightbox. <strong>Important:<\\/strong> To enable this you will need to refresh your Access Token by using the big blue Instagram login button on the plugin\'s Settings page, and then copying your new token into the plugin\'s Access Token field.<\\/li>\\n<li>New: You can now choose to only show photos from your feeds which contain certain words or hashtags. For example, you can display photos from a User account which only contain a specific hashtag. Use the settings in the new \'Post Filtering\' section on the Customize page, or define words or hashtags directly in your shortcode; <code>includewords=\\\"#sunshine\\\"<\\/code><\\/li>\\n<li>New: You can now also remove photos which contain certain words or hashtags. Use the setting in the \'Post Filtering\' section, or the following shortcode option <code>excludewords=\\\"bad, words\\\"<\\/code><\\/li>\\n<li>New: Block photos from certain users by entering their usernames into the \'Block Users\' field on the plugin\'s Customize page<\\/li>\\n<li>New: Added a second style of header. The \'boxed\' header style can be configured under the \'Header\' section of the plugin\'s Customize page, or enabled using <code>headerstyle=boxed<\\/code><\\/li>\\n<li>New: The plugin now automatically removes duplicate photos from your feed<\\/li>\\n<li>New: When you click on the name of a setting on the plugin\'s Settings pages it now displays the shortcode option for that setting, making it easier to find the option that you need<\\/li>\\n<li>New: Hashtags and @tags in the caption are now linked to the relevant pages on Instagram<\\/li>\\n<li>New: Text in the pop-up lightbox is now formatted with line breaks as it is on Instagram<\\/li>\\n<li>New: Choose to show the number of photos and followers an account has in the feed header. Use the setting under the \'Header\' section, or the following shortcode option <code>showfollowers=true<\\/code>.<\\/li>\\n<li>New: You can now choose to include only photos or only videos in your feed. Use the setting under the \'Photos\' section on the Customize page, or the following shortcode option: <code>media=photos<\\/code>.<\\/li>\\n<li>New: You can now display the photo location, caption, or number of likes and comments over the photo when it\'s hovered upon<\\/li>\\n<li>New: Pick and choose which information to show over the photo when it\'s hovered upon. Use the checkboxes under the \'Photo Hover Style\' section, or the <code>hoverdisplay<\\/code> shortcode option: <code>hoverdisplay=\\\"date, location, likes\\\"<\\/code>.<\\/li>\\n<li>Tweak: A header is now added to the hashtag feed and displays the hashtag<\\/li>\\n<li>Tweak: Added a loading symbol to the \'Load more\' button to indicate when new photos are loading<\\/li>\\n<li>Fix: Fixed an issue where duplicate photos would be loaded into a feed if the \'Are you using an Ajax powered theme\' setting was checked on a non-Ajax powered theme<\\/li>\\n<li>Fix: The play button icon shown over the top of the photo is now clickable<\\/li>\\n<li>Fix: Fixed an issue with emojis in the feed header displaying on a separate line<\\/li>\\n<li>Fix: Fixed a bug where the image resolution \'Auto-detect\' setting would sometimes display the wrong image size<\\/li>\\n<\\/ul>\\n<h4> 1.3.1 <\\/h4>\\n<ul>\\n<li>New: Added an email option to the share icons in the pop-up lightbox<\\/li>\\n<li>Fix: Fixed an issue with the \'Load more\' button not always showing when displaying photos from multiple hashtags or User IDs<\\/li>\\n<li>Fix: Fixed an issue where clicking on the play icon on the photo didn\'t launch the video pop-up<\\/li>\\n<li>Fix: Moved the initiating sbi_init function outside of the jQuery ready function so that it can be called externally if needed by Ajax powered themes\\/plugins<\\/li>\\n<li>Fix: Fixed a problem which sometimes caused the lightbox to conflict with lightboxes built into themes or other plugins<\\/li>\\n<\\/ul>\\n<h4> 1.3 <\\/h4>\\n<ul>\\n<li>New: Added an option to disable the pop-up photo lightbox<\\/li>\\n<li>New: Added swipe support for the popup lightbox on touch screen devices<\\/li>\\n<li>New: Added an setting which allows you to use the plugin with an Ajax powered theme<\\/li>\\n<li>New: Added an option to disable the mobile layout<\\/li>\\n<li>New: Added a Support tab which contains System Info to help with troubleshooting<\\/li>\\n<li>New: Added friendly error messages which display only to WordPress admins<\\/li>\\n<li>New: Added validation to the User ID field to prevent usernames being entered instead of IDs<\\/li>\\n<li>Tweak: Disabled the hover event on touch screen devices so that tapping the photo once launches the lightbox<\\/li>\\n<li>Tweak: Made the Access Token field slightly wider to prevent tokens being copy and pasted incorrectly<\\/li>\\n<li>Tweak: Updated the plugin updater\\/license check script<\\/li>\\n<\\/ul>\\n<h4> 1.2.2 <\\/h4>\\n<ul>\\n<li>New: Added the ability to add a class to the feed via the shortcode, like so: [instagram-feed class=&quot;my-feed&quot;]<\\/li>\\n<li>Fix: Fixed an issue with videos not playing on some touch-screen devices<\\/li>\\n<li>Fix: Fixed an issue with video sizing on some mobile devices<\\/li>\\n<li>Fix: Addressed a few CSS issues which were causing some minor formatting issues on certain themes<\\/li>\\n<\\/ul>\\n<h4> 1.2.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed an issue with the width of videos exceeding the lightbox container on smaller screen sizes and mobile devices<\\/li>\\n<li>Fix: Fixed an issue with both buttons being hidden when there were no more posts to load, rather than just the \'Load More\' button<\\/li>\\n<li>Fix: Added a small amount of margin to the top of the buttons to prevent them touching when displayed in narrow columns or on mobile<\\/li>\\n<\\/ul>\\n<h4> 1.2 <\\/h4>\\n<ul>\\n<li>New: You can now display photos from multiple User IDs or hashtags. Simply separate your IDs or hashtags by commas.<\\/li>\\n<li>New: Added an optional header to the feed which contains your profile picture, username and bio. You can activate this on the Customize page.<\\/li>\\n<li>New: Specific photos in your feed can now be hidden. A link is displayed in the popup photo lightbox to site admins only which reveals the photos ID. This can then be added to the new \'Hide Photos\' section on the plugin\'s Customize page.<\\/li>\\n<li>New: The plugin now includes an \'Auto-detect\' option for the Image Resolution setting which will automatically set the correct image resolution based on the size of your feed.<\\/li>\\n<li>New: Added the username and profile picture to the popup photo lightbox<\\/li>\\n<li>New: Added a \'Share\' button to the photo lightbox which allows you to share the photo on various social media platforms<\\/li>\\n<li>New: Added an Instagram button to the photo lightbox which allows you to view the photo on Instagram<\\/li>\\n<li>New: Added an optional \'Follow on Instagram\' button which can be displayed at the bottom of your feed. You can activate this on the Customize page.<\\/li>\\n<li>New: Added the ability to use your own custom text for the \'Load More\' button<\\/li>\\n<li>New: You can now change the color of the text and icons which are displayed when hovering over the photos<\\/li>\\n<li>New: Added a loader icon to indicate that the images are loading<\\/li>\\n<li>Tweak: Tweaked some CSS to improve spacing and cross-browser consistency<\\/li>\\n<li>Tweak: Removed the semi-transparent background color from caption and likes section. can now be added via CSS instead using: #sb_instagram .sbi_info{ background: rgba(255,255,255,0.5); }<\\/li>\\n<li>Tweak: Improved the documentation within the plugin settings pages<\\/li>\\n<li>Fix: Fixed an issue with some photos not displaying at full size in the popup photo lightbox<\\/li>\\n<li>Fix: Added word wrapping to captions so that long sentences or hashtags without spaces to wrap onto the next line<\\/li>\\n<\\/ul>\\n<h4> 1.1 <\\/h4>\\n<ul>\\n<li>New: Added video support. Videos now play in the lightbox!<\\/li>\\n<li>New: Redesigned the photo hover state to use icons and include the date and author name<\\/li>\\n<li>New: Added an option to change the color of the hover background<\\/li>\\n<li>Tweak: You can now specify the hashtag with or without the # symbol<\\/li>\\n<li>Tweak: Tweaked the responsive design and modified the media queries so that the feed switches to 1 or 2 columns on mobile<\\/li>\\n<li>Tweak: Added a friendly message if you activate the Pro version of the plugin while the free version is still activated<\\/li>\\n<li>Tweak: Added a \'Settings\' link to the Plugins page<\\/li>\\n<li>Tweak: Added a link to the <a href=\\\"https:\\/\\/smashballoon.com\\/instagram-feed\\/docs\\/\\\">setup directions<\\/a><\\/li>\\n<li>Fix: Replaced the \'on\' function with the \'click\' function to increase compatibility with themes using older versions of jQuery<\\/li>\\n<li>Fix: Fixed an issue with double quotes in photo captions<\\/li>\\n<li>Fix: Removed float from the feed container to prevent clearing issues with other widgets<\\/li>\\n<\\/ul>\\n<h4> 1.0.3 <\\/h4>\\n<ul>\\n<li>Tweak: If you have more than one Instagram feed on a page then the photos in each lightbox slideshow are now grouped by feed<\\/li>\\n<li>Tweak: Added an initialize function to the plugin<\\/li>\\n<li>Fix: Added a unique class and data attribute to the lightbox to prevent conflicts with other lightboxes on your site<\\/li>\\n<li>Fix: Fixed an occasional issue with the \'Sort Photos By\' option being undefined<\\/li>\\n<\\/ul>\\n<h4> 1.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added the photo caption as the \'alt\' tag of the images<\\/li>\\n<li>Fix: Fixed an issue with the caption elipsis link not always working correctly after having clicked the \'Load More\' button<\\/li>\\n<li>Fix: Changed the double quotes to single quotes on the \'data-options\' attribute<\\/li>\\n<\\/ul>\\n<h4> 1.0.1 <\\/h4>\\n<ul>\\n<li>Fix: Fixed a minor issue with the Custom JavaScript being run before the photos are loaded<\\/li>\\n<\\/ul>\\n<h4> 1.0 <\\/h4>\\n<ul>\\n<li>Launched the Instagram Feed Pro plugin!<\\/li>\\n<\\/ul>\"],\"installation\":[\"<ol>\\n<li>Install the Instagram plugin either via the WordPress plugin directory, or by uploading the files to your web server (in the <code>\\/wp-content\\/plugins\\/<\\/code> directory).<\\/li>\\n<li>Activate the plugin through the \'Plugins\' menu in WordPress.<\\/li>\\n<li>Navigate to the \'Instagram Feed\' settings page to configure your Instagram feed.<\\/li>\\n<li>Use the shortcode <code>[instagram-feed]<\\/code> in your page, post or widget to display your photos.<\\/li>\\n<li>You can display multiple Instagram feeds by using shortcode options, for example: <code>[instagram-feed id=YOUR_USER_ID_HERE cols=3 width=50 widthunit=%]<\\/code><\\/li>\\n<\\/ol>\"]}\";}','no'),(664,'wpsbc_version','8.3.6','yes'),(665,'wpsbc_first_activation','1617893783','yes'),(666,'wpsbc_settings','a:9:{s:21:\"booking_history_color\";s:7:\"#16293a\";s:17:\"current_day_color\";s:7:\"#f2f2f2\";s:17:\"backend_start_day\";s:1:\"1\";s:18:\"ical_refresh_times\";s:6:\"hourly\";s:24:\"ical_custom_refresh_time\";s:0:\"\";s:29:\"ical_custom_refresh_time_unit\";s:7:\"minutes\";s:16:\"active_languages\";a:1:{i:0;s:2:\"en\";}s:12:\"search_addon\";a:26:{s:23:\"button_background_color\";s:0:\"\";s:17:\"button_text_color\";s:0:\"\";s:29:\"button_background_hover_color\";s:0:\"\";s:23:\"button_text_hover_color\";s:0:\"\";s:12:\"widget_title\";s:6:\"Search\";s:27:\"widget_title_translation_en\";s:0:\"\";s:16:\"start_date_label\";s:10:\"Start Date\";s:31:\"start_date_label_translation_en\";s:0:\"\";s:14:\"end_date_label\";s:8:\"End Date\";s:29:\"end_date_label_translation_en\";s:0:\"\";s:19:\"search_button_label\";s:6:\"Search\";s:34:\"search_button_label_translation_en\";s:0:\"\";s:13:\"no_start_date\";s:30:\"Please select a starting date.\";s:28:\"no_start_date_translation_en\";s:0:\"\";s:11:\"no_end_date\";s:29:\"Please select an ending date.\";s:26:\"no_end_date_translation_en\";s:0:\"\";s:18:\"invalid_start_date\";s:19:\"Invalid start date.\";s:33:\"invalid_start_date_translation_en\";s:0:\"\";s:16:\"invalid_end_date\";s:16:\"Invalid end date\";s:31:\"invalid_end_date_translation_en\";s:0:\"\";s:13:\"results_title\";s:14:\"Search Results\";s:28:\"results_title_translation_en\";s:0:\"\";s:10:\"no_results\";s:30:\"No available dates were found.\";s:25:\"no_results_translation_en\";s:0:\"\";s:17:\"view_button_label\";s:4:\"View\";s:32:\"view_button_label_translation_en\";s:0:\"\";}s:13:\"always_update\";s:1:\"1\";}','yes'),(667,'widget_wpsbc_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(668,'widget_wpsbc_calendar_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(672,'wpsbc_serial_key','UdLIguQzcY43SYx5gan1NF','yes'),(673,'wpsbc_registered_website_id','3622','yes'),(677,'external_updates-wp-simple-booking-calendar-premium','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1620932652;s:14:\"checkedVersion\";s:5:\"8.3.6\";s:6:\"update\";O:18:\"WPSBC_PluginUpdate\":6:{s:2:\"id\";i:0;s:4:\"slug\";s:34:\"wp-simple-booking-calendar-premium\";s:7:\"version\";s:5:\"8.3.7\";s:8:\"homepage\";N;s:12:\"download_url\";s:111:\"https://www.wpsimplebookingcalendar.com/wp-content/uploads/2021/04/wp-simple-booking-calendar-premium-8.3.7.zip\";s:14:\"upgrade_notice\";N;}}','yes'),(753,'sbi_usage_tracking','a:2:{s:9:\"last_send\";i:1620232850;s:7:\"enabled\";b:1;}','no'),(774,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:27:\"cat@partridgecreative.co.uk\";s:7:\"version\";s:5:\"5.7.2\";s:9:\"timestamp\";i:1620877159;}','no'),(924,'vc_automapped_shortcodes','a:1:{s:13:\"11055a7b-04e9\";a:5:{s:3:\"tag\";s:5:\"wpsbc\";s:4:\"name\";s:18:\"WP Simple Calendar\";s:8:\"category\";s:18:\"Calendar ShortCode\";s:11:\"description\";s:26:\"Add a Calendar to any Page\";s:6:\"params\";a:7:{i:0;a:5:{s:10:\"param_name\";s:2:\"id\";s:4:\"type\";s:9:\"textfield\";s:11:\"description\";s:10:\"Example: 1\";s:7:\"heading\";s:2:\"Id\";s:5:\"value\";s:1:\"1\";}i:1;a:5:{s:10:\"param_name\";s:5:\"title\";s:4:\"type\";s:9:\"textfield\";s:11:\"description\";s:12:\"Example: yes\";s:7:\"heading\";s:5:\"Title\";s:5:\"value\";s:3:\"yes\";}i:2;a:5:{s:10:\"param_name\";s:6:\"legend\";s:4:\"type\";s:9:\"textfield\";s:11:\"description\";s:11:\"Example: no\";s:7:\"heading\";s:6:\"Legend\";s:5:\"value\";s:2:\"no\";}i:3;a:5:{s:10:\"param_name\";s:8:\"language\";s:4:\"type\";s:9:\"textfield\";s:11:\"description\";s:13:\"Example: auto\";s:7:\"heading\";s:8:\"Language\";s:5:\"value\";s:4:\"auto\";}i:4;a:5:{s:10:\"param_name\";s:7:\"display\";s:4:\"type\";s:9:\"textfield\";s:11:\"description\";s:11:\"Example: 12\";s:7:\"heading\";s:7:\"Display\";s:5:\"value\";s:2:\"12\";}i:5;a:5:{s:10:\"param_name\";s:8:\"dropdown\";s:4:\"type\";s:9:\"textfield\";s:11:\"description\";s:15:\"Example: no/yes\";s:7:\"heading\";s:8:\"Dropdown\";s:5:\"value\";s:2:\"no\";}i:6;a:5:{s:10:\"param_name\";s:4:\"jump\";s:4:\"type\";s:8:\"dropdown\";s:11:\"description\";s:0:\"\";s:7:\"heading\";s:4:\"Jump\";s:5:\"value\";s:6:\"no,yes\";}}}}','yes'),(1436,'_site_transient_timeout_browser_3651f072395347537c74089989c88a66','1621081606','no'),(1437,'_site_transient_browser_3651f072395347537c74089989c88a66','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"90.0.4430.93\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1438,'_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd','1621081607','no'),(1439,'_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(1561,'_site_transient_timeout_browser_94f3a0aadeac1fbaa20fd440f22d7dba','1621263268','no'),(1562,'_site_transient_browser_94f3a0aadeac1fbaa20fd440f22d7dba','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"90.0.4430.93\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1578,'taxonomy_term_5','a:39:{s:13:\"header_effect\";s:2:\"no\";s:22:\"slider_parallax_effect\";s:3:\"yes\";s:30:\"slider_advanced_responsiveness\";s:2:\"no\";s:19:\"breakpoint1_graphic\";s:0:\"\";s:17:\"breakpoint1_title\";s:0:\"\";s:20:\"breakpoint1_subtitle\";s:0:\"\";s:16:\"breakpoint1_text\";s:0:\"\";s:18:\"breakpoint1_button\";s:0:\"\";s:19:\"breakpoint2_graphic\";s:0:\"\";s:17:\"breakpoint2_title\";s:0:\"\";s:20:\"breakpoint2_subtitle\";s:0:\"\";s:16:\"breakpoint2_text\";s:0:\"\";s:18:\"breakpoint2_button\";s:0:\"\";s:19:\"breakpoint3_graphic\";s:0:\"\";s:17:\"breakpoint3_title\";s:0:\"\";s:20:\"breakpoint3_subtitle\";s:0:\"\";s:16:\"breakpoint3_text\";s:0:\"\";s:18:\"breakpoint3_button\";s:0:\"\";s:19:\"breakpoint4_graphic\";s:0:\"\";s:17:\"breakpoint4_title\";s:0:\"\";s:20:\"breakpoint4_subtitle\";s:0:\"\";s:16:\"breakpoint4_text\";s:0:\"\";s:18:\"breakpoint4_button\";s:0:\"\";s:19:\"breakpoint5_graphic\";s:0:\"\";s:17:\"breakpoint5_title\";s:0:\"\";s:20:\"breakpoint5_subtitle\";s:0:\"\";s:16:\"breakpoint5_text\";s:0:\"\";s:18:\"breakpoint5_button\";s:0:\"\";s:19:\"breakpoint6_graphic\";s:0:\"\";s:17:\"breakpoint6_title\";s:0:\"\";s:20:\"breakpoint6_subtitle\";s:0:\"\";s:16:\"breakpoint6_text\";s:0:\"\";s:18:\"breakpoint6_button\";s:0:\"\";s:19:\"breakpoint7_graphic\";s:0:\"\";s:17:\"breakpoint7_title\";s:0:\"\";s:20:\"breakpoint7_subtitle\";s:0:\"\";s:16:\"breakpoint7_text\";s:0:\"\";s:18:\"breakpoint7_button\";s:0:\"\";s:9:\"shortcode\";s:180:\"[qode_slider slider=\\\'home\\\' auto_start=\\\'true\\\' animation_type=\\\'slide\\\' slide_animation=\\\'6000\\\' height=\\\'\\\' responsive_height=\\\'yes\\\' anchor=\\\'\\\' show_navigation_arrows=\\\'yes\\\']\";}','yes'),(1584,'slides_category_children','a:0:{}','yes'),(1634,'_site_transient_timeout_browser_adbc7b41fe86a9398896506b2770a3a6','1621344764','no'),(1635,'_site_transient_browser_adbc7b41fe86a9398896506b2770a3a6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"88.0.4324.96\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1651,'_site_transient_timeout_browser_220ac8ceb1db13ed6db2da1a3be63cdd','1621351360','no'),(1652,'_site_transient_browser_220ac8ceb1db13ed6db2da1a3be63cdd','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"90.0.4430.93\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(1671,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"16.2\";}','yes'),(1672,'wpseo','a:44:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:0;s:7:\"version\";s:4:\"16.2\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1620765503;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:59:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:8:{s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:18:\"portfolio_category\";s:18:\"portfolio-category\";s:13:\"portfolio_tag\";s:13:\"portfolio-tag\";s:21:\"testimonials_category\";s:21:\"testimonials-category\";s:15:\"slides_category\";s:15:\"slides-category\";s:18:\"carousels_category\";s:18:\"carousels-category\";s:24:\"masonry_gallery_category\";s:24:\"masonry-gallery-category\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;}','yes'),(1673,'wpseo_titles','a:202:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:9:\"%%title%%\";s:26:\"social-title-archive-wpseo\";s:9:\"%%title%%\";s:31:\"social-description-author-wpseo\";s:11:\"%%excerpt%%\";s:32:\"social-description-archive-wpseo\";s:11:\"%%excerpt%%\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";s:0:\"\";s:29:\"social-image-id-archive-wpseo\";s:0:\"\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:11:\"%%excerpt%%\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";s:0:\"\";s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:11:\"%%excerpt%%\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";s:0:\"\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:23:\"social-title-attachment\";s:9:\"%%title%%\";s:29:\"social-description-attachment\";s:11:\"%%excerpt%%\";s:27:\"social-image-url-attachment\";s:0:\"\";s:26:\"social-image-id-attachment\";s:0:\"\";s:20:\"title-e-landing-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-e-landing-page\";s:0:\"\";s:22:\"noindex-e-landing-page\";b:0;s:33:\"display-metabox-pt-e-landing-page\";b:1;s:33:\"post_types-e-landing-page-maintax\";i:0;s:31:\"schema-page-type-e-landing-page\";s:7:\"WebPage\";s:34:\"schema-article-type-e-landing-page\";s:4:\"None\";s:27:\"social-title-e-landing-page\";s:9:\"%%title%%\";s:33:\"social-description-e-landing-page\";s:11:\"%%excerpt%%\";s:31:\"social-image-url-e-landing-page\";s:0:\"\";s:30:\"social-image-id-e-landing-page\";s:0:\"\";s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;s:34:\"schema-page-type-elementor_library\";s:7:\"WebPage\";s:37:\"schema-article-type-elementor_library\";s:4:\"None\";s:30:\"social-title-elementor_library\";s:9:\"%%title%%\";s:36:\"social-description-elementor_library\";s:11:\"%%excerpt%%\";s:34:\"social-image-url-elementor_library\";s:0:\"\";s:33:\"social-image-id-elementor_library\";s:0:\"\";s:20:\"title-portfolio_page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-portfolio_page\";s:0:\"\";s:22:\"noindex-portfolio_page\";b:0;s:33:\"display-metabox-pt-portfolio_page\";b:1;s:33:\"post_types-portfolio_page-maintax\";i:0;s:31:\"schema-page-type-portfolio_page\";s:7:\"WebPage\";s:34:\"schema-article-type-portfolio_page\";s:4:\"None\";s:27:\"social-title-portfolio_page\";s:9:\"%%title%%\";s:33:\"social-description-portfolio_page\";s:11:\"%%excerpt%%\";s:31:\"social-image-url-portfolio_page\";s:0:\"\";s:30:\"social-image-id-portfolio_page\";s:0:\"\";s:30:\"title-ptarchive-portfolio_page\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:33:\"metadesc-ptarchive-portfolio_page\";s:0:\"\";s:32:\"bctitle-ptarchive-portfolio_page\";s:0:\"\";s:32:\"noindex-ptarchive-portfolio_page\";b:0;s:37:\"social-title-ptarchive-portfolio_page\";s:9:\"%%title%%\";s:43:\"social-description-ptarchive-portfolio_page\";s:11:\"%%excerpt%%\";s:41:\"social-image-url-ptarchive-portfolio_page\";s:0:\"\";s:40:\"social-image-id-ptarchive-portfolio_page\";s:0:\"\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:9:\"%%title%%\";s:31:\"social-description-tax-category\";s:11:\"%%excerpt%%\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";s:0:\"\";s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:9:\"%%title%%\";s:31:\"social-description-tax-post_tag\";s:11:\"%%excerpt%%\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";s:0:\"\";s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:9:\"%%title%%\";s:34:\"social-description-tax-post_format\";s:11:\"%%excerpt%%\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";s:0:\"\";s:28:\"title-tax-portfolio_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-portfolio_category\";s:0:\"\";s:38:\"display-metabox-tax-portfolio_category\";b:1;s:30:\"noindex-tax-portfolio_category\";b:0;s:35:\"social-title-tax-portfolio_category\";s:9:\"%%title%%\";s:41:\"social-description-tax-portfolio_category\";s:11:\"%%excerpt%%\";s:39:\"social-image-url-tax-portfolio_category\";s:0:\"\";s:38:\"social-image-id-tax-portfolio_category\";s:0:\"\";s:36:\"taxonomy-portfolio_category-ptparent\";i:0;s:23:\"title-tax-portfolio_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-tax-portfolio_tag\";s:0:\"\";s:33:\"display-metabox-tax-portfolio_tag\";b:1;s:25:\"noindex-tax-portfolio_tag\";b:0;s:30:\"social-title-tax-portfolio_tag\";s:9:\"%%title%%\";s:36:\"social-description-tax-portfolio_tag\";s:11:\"%%excerpt%%\";s:34:\"social-image-url-tax-portfolio_tag\";s:0:\"\";s:33:\"social-image-id-tax-portfolio_tag\";s:0:\"\";s:31:\"taxonomy-portfolio_tag-ptparent\";i:0;s:31:\"title-tax-testimonials_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:34:\"metadesc-tax-testimonials_category\";s:0:\"\";s:41:\"display-metabox-tax-testimonials_category\";b:1;s:33:\"noindex-tax-testimonials_category\";b:0;s:38:\"social-title-tax-testimonials_category\";s:9:\"%%title%%\";s:44:\"social-description-tax-testimonials_category\";s:11:\"%%excerpt%%\";s:42:\"social-image-url-tax-testimonials_category\";s:0:\"\";s:41:\"social-image-id-tax-testimonials_category\";s:0:\"\";s:39:\"taxonomy-testimonials_category-ptparent\";i:0;s:25:\"title-tax-slides_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-slides_category\";s:0:\"\";s:35:\"display-metabox-tax-slides_category\";b:1;s:27:\"noindex-tax-slides_category\";b:0;s:32:\"social-title-tax-slides_category\";s:9:\"%%title%%\";s:38:\"social-description-tax-slides_category\";s:11:\"%%excerpt%%\";s:36:\"social-image-url-tax-slides_category\";s:0:\"\";s:35:\"social-image-id-tax-slides_category\";s:0:\"\";s:33:\"taxonomy-slides_category-ptparent\";i:0;s:28:\"title-tax-carousels_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:31:\"metadesc-tax-carousels_category\";s:0:\"\";s:38:\"display-metabox-tax-carousels_category\";b:1;s:30:\"noindex-tax-carousels_category\";b:0;s:35:\"social-title-tax-carousels_category\";s:9:\"%%title%%\";s:41:\"social-description-tax-carousels_category\";s:11:\"%%excerpt%%\";s:39:\"social-image-url-tax-carousels_category\";s:0:\"\";s:38:\"social-image-id-tax-carousels_category\";s:0:\"\";s:36:\"taxonomy-carousels_category-ptparent\";i:0;s:34:\"title-tax-masonry_gallery_category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:37:\"metadesc-tax-masonry_gallery_category\";s:0:\"\";s:44:\"display-metabox-tax-masonry_gallery_category\";b:1;s:36:\"noindex-tax-masonry_gallery_category\";b:0;s:41:\"social-title-tax-masonry_gallery_category\";s:9:\"%%title%%\";s:47:\"social-description-tax-masonry_gallery_category\";s:11:\"%%excerpt%%\";s:45:\"social-image-url-tax-masonry_gallery_category\";s:0:\"\";s:44:\"social-image-id-tax-masonry_gallery_category\";s:0:\"\";s:42:\"taxonomy-masonry_gallery_category-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;}','yes'),(1674,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(1688,'wpseo_ryte','a:2:{s:6:\"status\";i:0;s:10:\"last_fetch\";i:1620765509;}','yes'),(1739,'_transient_timeout_wpsbc_serial_status','1620942272','no'),(1740,'_transient_wpsbc_serial_status','1','no'),(1787,'_transient_timeout_wpseo_total_unindexed_posts','1620938308','no'),(1788,'_transient_wpseo_total_unindexed_posts','135','no'),(1789,'_transient_timeout_wpseo_total_unindexed_terms','1620938308','no'),(1790,'_transient_wpseo_total_unindexed_terms','0','no'),(1791,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1620938308','no'),(1792,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(1793,'_transient_timeout_wpseo_unindexed_post_link_count','1620938308','no'),(1794,'_transient_wpseo_unindexed_post_link_count','20','no'),(1795,'_transient_timeout_wpseo_unindexed_term_link_count','1620938308','no'),(1796,'_transient_wpseo_unindexed_term_link_count','2','no'),(1797,'rewrite_rules','a:238:{s:17:\"portfolio_page/?$\";s:34:\"index.php?post_type=portfolio_page\";s:47:\"portfolio_page/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=portfolio_page&feed=$matches[1]\";s:42:\"portfolio_page/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=portfolio_page&feed=$matches[1]\";s:34:\"portfolio_page/page/([0-9]{1,})/?$\";s:52:\"index.php?post_type=portfolio_page&paged=$matches[1]\";s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";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:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"portfolio_page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"portfolio_page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"portfolio_page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio_page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio_page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"portfolio_page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"portfolio_page/([^/]+)/embed/?$\";s:47:\"index.php?portfolio_page=$matches[1]&embed=true\";s:35:\"portfolio_page/([^/]+)/trackback/?$\";s:41:\"index.php?portfolio_page=$matches[1]&tb=1\";s:55:\"portfolio_page/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_page=$matches[1]&feed=$matches[2]\";s:50:\"portfolio_page/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio_page=$matches[1]&feed=$matches[2]\";s:43:\"portfolio_page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio_page=$matches[1]&paged=$matches[2]\";s:50:\"portfolio_page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?portfolio_page=$matches[1]&cpage=$matches[2]\";s:39:\"portfolio_page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?portfolio_page=$matches[1]&page=$matches[2]\";s:31:\"portfolio_page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"portfolio_page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"portfolio_page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio_page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio_page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"portfolio_page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"slides/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"slides/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"slides/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"slides/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"slides/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"slides/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:23:\"slides/([^/]+)/embed/?$\";s:39:\"index.php?slides=$matches[1]&embed=true\";s:27:\"slides/([^/]+)/trackback/?$\";s:33:\"index.php?slides=$matches[1]&tb=1\";s:35:\"slides/([^/]+)/page/?([0-9]{1,})/?$\";s:46:\"index.php?slides=$matches[1]&paged=$matches[2]\";s:42:\"slides/([^/]+)/comment-page-([0-9]{1,})/?$\";s:46:\"index.php?slides=$matches[1]&cpage=$matches[2]\";s:31:\"slides/([^/]+)(?:/([0-9]+))?/?$\";s:45:\"index.php?slides=$matches[1]&page=$matches[2]\";s:23:\"slides/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:33:\"slides/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:53:\"slides/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"slides/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:48:\"slides/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:29:\"slides/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"carousels/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"carousels/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"carousels/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"carousels/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"carousels/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"carousels/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"carousels/([^/]+)/embed/?$\";s:42:\"index.php?carousels=$matches[1]&embed=true\";s:30:\"carousels/([^/]+)/trackback/?$\";s:36:\"index.php?carousels=$matches[1]&tb=1\";s:38:\"carousels/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?carousels=$matches[1]&paged=$matches[2]\";s:45:\"carousels/([^/]+)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?carousels=$matches[1]&cpage=$matches[2]\";s:34:\"carousels/([^/]+)(?:/([0-9]+))?/?$\";s:48:\"index.php?carousels=$matches[1]&page=$matches[2]\";s:26:\"carousels/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"carousels/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"carousels/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"carousels/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"carousels/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"carousels/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:43:\"masonry_gallery/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"masonry_gallery/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"masonry_gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"masonry_gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"masonry_gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"masonry_gallery/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"masonry_gallery/([^/]+)/embed/?$\";s:48:\"index.php?masonry_gallery=$matches[1]&embed=true\";s:36:\"masonry_gallery/([^/]+)/trackback/?$\";s:42:\"index.php?masonry_gallery=$matches[1]&tb=1\";s:44:\"masonry_gallery/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?masonry_gallery=$matches[1]&paged=$matches[2]\";s:51:\"masonry_gallery/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?masonry_gallery=$matches[1]&cpage=$matches[2]\";s:40:\"masonry_gallery/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?masonry_gallery=$matches[1]&page=$matches[2]\";s:32:\"masonry_gallery/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"masonry_gallery/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"masonry_gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"masonry_gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"masonry_gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"masonry_gallery/[^/]+/([^/]+)/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:54:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio_tag=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio_tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio_tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio_tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:35:\"index.php?portfolio_tag=$matches[1]\";s:62:\"testimonials-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials_category=$matches[1]&feed=$matches[2]\";s:57:\"testimonials-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials_category=$matches[1]&feed=$matches[2]\";s:38:\"testimonials-category/([^/]+)/embed/?$\";s:54:\"index.php?testimonials_category=$matches[1]&embed=true\";s:50:\"testimonials-category/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?testimonials_category=$matches[1]&paged=$matches[2]\";s:32:\"testimonials-category/([^/]+)/?$\";s:43:\"index.php?testimonials_category=$matches[1]\";s:56:\"slides-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?slides_category=$matches[1]&feed=$matches[2]\";s:51:\"slides-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?slides_category=$matches[1]&feed=$matches[2]\";s:32:\"slides-category/([^/]+)/embed/?$\";s:48:\"index.php?slides_category=$matches[1]&embed=true\";s:44:\"slides-category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?slides_category=$matches[1]&paged=$matches[2]\";s:26:\"slides-category/([^/]+)/?$\";s:37:\"index.php?slides_category=$matches[1]\";s:59:\"carousels-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?carousels_category=$matches[1]&feed=$matches[2]\";s:54:\"carousels-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?carousels_category=$matches[1]&feed=$matches[2]\";s:35:\"carousels-category/([^/]+)/embed/?$\";s:51:\"index.php?carousels_category=$matches[1]&embed=true\";s:47:\"carousels-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?carousels_category=$matches[1]&paged=$matches[2]\";s:29:\"carousels-category/([^/]+)/?$\";s:40:\"index.php?carousels_category=$matches[1]\";s:65:\"masonry-gallery-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?masonry_gallery_category=$matches[1]&feed=$matches[2]\";s:60:\"masonry-gallery-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?masonry_gallery_category=$matches[1]&feed=$matches[2]\";s:41:\"masonry-gallery-category/([^/]+)/embed/?$\";s:57:\"index.php?masonry_gallery_category=$matches[1]&embed=true\";s:53:\"masonry-gallery-category/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?masonry_gallery_category=$matches[1]&paged=$matches[2]\";s:35:\"masonry-gallery-category/([^/]+)/?$\";s:46:\"index.php?masonry_gallery_category=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=271&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(1835,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.2.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.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.2\";s:7:\"version\";s:5:\"5.7.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1620898300;s:15:\"version_checked\";s:5:\"5.7.2\";s:12:\"translations\";a:0:{}}','no'),(1845,'_site_transient_timeout_envato_market_plugins','1620901907','no'),(1846,'_site_transient_envato_market_plugins','a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}','no'),(1847,'_site_transient_timeout_theme_roots','1620900102','no'),(1848,'_site_transient_theme_roots','a:4:{s:6:\"bridge\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";}','no'),(1849,'_site_transient_timeout_envato_market_themes','1620901902','no'),(1850,'_site_transient_envato_market_themes','a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}','no'),(1851,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1620898302;s:7:\"checked\";a:4:{s:6:\"bridge\";s:4:\"25.4\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.2\";}s:8:\"response\";a:1:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.3.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:2:{s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.0.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.7.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(1852,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1620898306;s:7:\"checked\";a:15:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:27:\"bridge-core/bridge-core.php\";s:5:\"2.6.9\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.4\";s:23:\"elementor/elementor.php\";s:5:\"3.1.4\";s:31:\"envato-market/envato-market.php\";s:5:\"2.0.6\";s:9:\"hello.php\";s:5:\"1.7.2\";s:31:\"smashballoon/instagram-feed.php\";s:4:\"5.12\";s:27:\"LayerSlider/layerslider.php\";s:6:\"6.11.6\";s:45:\"qode-instagram-widget/qode-instagram-feed.php\";s:5:\"2.1.2\";s:39:\"qode-twitter-feed/qode-twitter-feed.php\";s:5:\"2.0.2\";s:21:\"site-pin/site-pin.php\";s:3:\"1.3\";s:23:\"revslider/revslider.php\";s:5:\"6.4.3\";s:27:\"js_composer/js_composer.php\";s:5:\"6.6.0\";s:44:\"wp-simple-booking-calendar-premium/index.php\";s:5:\"8.3.6\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"16.2\";}s:8:\"response\";a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{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.4.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";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:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.2.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"LayerSlider/layerslider.php\";O:8:\"stdClass\":13:{s:4:\"slug\";s:11:\"LayerSlider\";s:6:\"plugin\";s:27:\"LayerSlider/layerslider.php\";s:7:\"version\";s:6:\"6.11.8\";s:8:\"released\";s:10:\"2021-04-19\";s:5:\"icons\";a:3:{s:2:\"1x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png?ver=6.9.2\";s:2:\"2x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";s:7:\"default\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";}s:7:\"banners\";a:3:{s:3:\"low\";s:94:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png?ver=6.9.2\";s:4:\"high\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";s:7:\"default\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";}s:3:\"url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:7:\"package\";s:0:\"\";s:8:\"requires\";s:3:\"3.5\";s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:5:\"5.3.0\";s:14:\"upgrade_notice\";s:56:\"This update contains general improvements and bug fixes.\";s:11:\"new_version\";s:6:\"6.11.8\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:4:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"site-pin/site-pin.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/site-pin\";s:4:\"slug\";s:8:\"site-pin\";s:6:\"plugin\";s:21:\"site-pin/site-pin.php\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/site-pin/\";s:7:\"package\";s:51:\"https://downloads.wordpress.org/plugin/site-pin.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:59:\"https://s.w.org/plugins/geopattern-icon/site-pin_4c4f4f.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/site-pin/assets/banner-772x250.png?rev=562359\";}s:11:\"banners_rtl\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"16.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2363699\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}}}}','no'),(1853,'_transient_timeout_elementor_remote_info_api_data_3.1.4','1620944047','no'),(1854,'_transient_elementor_remote_info_api_data_3.1.4','a:4:{s:9:\"timestamp\";s:10:\"1620900825\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:60:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:52;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:59;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.2.1\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.2.1.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}}','no'),(1857,'_site_transient_timeout_community-events-30fff07d386a27112068794f1e8b5609','1620944054','no'),(1858,'_site_transient_community-events-30fff07d386a27112068794f1e8b5609','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"86.136.232.0\";}s:6:\"events\";a:7:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:64:\"Demo + Discussion group: Creating and Registering Block Patterns\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/277669527/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-05-14 11:00:00\";s:8:\"end_date\";s:19:\"2021-05-14 12:00:00\";s:20:\"start_unix_timestamp\";i:1621015200;s:18:\"end_unix_timestamp\";i:1621018800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.7799987792970028976924368180334568023681640625;s:9:\"longitude\";d:-122.419998168950002082056016661226749420166015625;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:30:\"WordCamp Northeast Ohio Region\";s:3:\"url\";s:30:\"https://neo.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-05-21 00:00:00\";s:8:\"end_date\";s:19:\"2021-05-23 00:00:00\";s:20:\"start_unix_timestamp\";i:1621569600;s:18:\"end_unix_timestamp\";i:1621742400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.26178730000000172140062204562127590179443359375;s:9:\"longitude\";d:-81.16372450000000071668182499706745147705078125;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:39:\"BeeWUG - Blackburn WordPress User Group\";s:3:\"url\";s:71:\"https://www.meetup.com/Blackburn-WordPress-Meetup/events/hwqkxrycchbqb/\";s:6:\"meetup\";s:26:\"Blackburn WordPress Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/Blackburn-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-05-12 18:30:00\";s:8:\"end_date\";s:19:\"2021-05-12 20:30:00\";s:20:\"start_unix_timestamp\";i:1620840600;s:18:\"end_unix_timestamp\";i:1620847800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:53.75;s:9:\"longitude\";d:-2.490000009536700087409144543926231563091278076171875;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:39:\"WordPress Leeds Online - Monthly Meetup\";s:3:\"url\";s:60:\"https://www.meetup.com/WordPress-Leeds/events/fbjvtrycchbhc/\";s:6:\"meetup\";s:15:\"WordPress Leeds\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/WordPress-Leeds/\";s:4:\"date\";s:19:\"2021-05-25 17:30:00\";s:8:\"end_date\";s:19:\"2021-05-25 18:30:00\";s:20:\"start_unix_timestamp\";i:1621960200;s:18:\"end_unix_timestamp\";i:1621963800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:53.7900009155270026894868351519107818603515625;s:9:\"longitude\";d:-1.5499999523162999448544496772228740155696868896484375;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:39:\"BeeWUG - Blackburn WordPress User Group\";s:3:\"url\";s:71:\"https://www.meetup.com/Blackburn-WordPress-Meetup/events/hwqkxryccjbmb/\";s:6:\"meetup\";s:26:\"Blackburn WordPress Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/Blackburn-WordPress-Meetup/\";s:4:\"date\";s:19:\"2021-06-09 18:30:00\";s:8:\"end_date\";s:19:\"2021-06-09 20:30:00\";s:20:\"start_unix_timestamp\";i:1623259800;s:18:\"end_unix_timestamp\";i:1623267000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:53.75;s:9:\"longitude\";d:-2.490000009536700087409144543926231563091278076171875;}}i:5;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:39:\"WordPress Leeds Online - Monthly Meetup\";s:3:\"url\";s:60:\"https://www.meetup.com/WordPress-Leeds/events/fbjvtryccjbdc/\";s:6:\"meetup\";s:15:\"WordPress Leeds\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/WordPress-Leeds/\";s:4:\"date\";s:19:\"2021-06-22 17:30:00\";s:8:\"end_date\";s:19:\"2021-06-22 18:30:00\";s:20:\"start_unix_timestamp\";i:1624379400;s:18:\"end_unix_timestamp\";i:1624383000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"GB\";s:8:\"latitude\";d:53.7900009155270026894868351519107818603515625;s:9:\"longitude\";d:-1.5499999523162999448544496772228740155696868896484375;}}i:6;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:19:\"WordPress Sheffield\";s:3:\"url\";s:56:\"https://www.meetup.com/wpsheffield/events/cjjjhrycckbrb/\";s:6:\"meetup\";s:19:\"WordPress Sheffield\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/wpsheffield/\";s:4:\"date\";s:19:\"2021-07-13 18:00:00\";s:8:\"end_date\";s:19:\"2021-07-13 21:00:00\";s:20:\"start_unix_timestamp\";i:1626195600;s:18:\"end_unix_timestamp\";i:1626206400;s:8:\"location\";a:4:{s:8:\"location\";s:25:\"Sheffield, United Kingdom\";s:7:\"country\";s:2:\"gb\";s:8:\"latitude\";d:53.3769149780270026894868351519107818603515625;s:9:\"longitude\";d:-1.4677870273589999072783029987476766109466552734375;}}}}','no'),(1859,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1620944055','no'),(1860,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"News –  – 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:\"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:\"Thu, 13 May 2021 01:04: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:\"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=5.8-alpha-50847\";s:7:\"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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.7.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:68:\"https://wordpress.org/news/2021/05/wordpress-5-7-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 May 2021 01:04: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: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:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10334\";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:356:\"WordPress 5.7.2 is now available. This security release features one security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.7.2 is a short-cycle security release. The next major release will be version 5.8. You can update to [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s: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:2091:\"\n<p>WordPress 5.7.2 is now available.</p>\n\n\n\n<p>This security release features one security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.2 is a short-cycle security release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can update to WordPress 5.7.2 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>One security issue affecting WordPress versions between 3.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 3.7 have also been updated to fix the following security issue:</p>\n\n\n\n<ul><li>Object injection in PHPMailer, <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2020-36326\">CVE-2020-36326</a> and <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2018-19296\">CVE-2018-19296</a>.</li></ul>\n\n\n\n<p>Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information refer to <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-2/\">the version 5.7.2 HelpHub documentation</a> page.</p>\n\n\n\n<h3>Thanks and props!</h3>\n\n\n\n<p>The 5.7.2 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.7.2 happen: <a href=\"https://profiles.wordpress.org/audrasjb\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">@ayeshrajans</a>, <a href=\"https://profiles.wordpress.org/desrosj\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/dd32\">@dd32</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">@peterwilsoncc</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">@SergeyBiryukov</a>, and <a href=\"https://profiles.wordpress.org/xknown\">@xknown</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10334\";s: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: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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Welcome to Openverse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/05/welcome-to-openverse/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 May 2021 12:42:52 +0000\";s: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: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:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s: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:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10325\";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:369:\"Following the recent statement by WordPress&#8217;s co-founder Matt Mullenweg and the Creative Commons CEO, Catherine Stihler’s post, I&#8217;m happy to formally announce that CC Search (with the new name Openverse) is now part of the WordPress open source project. Both Matt and I are long-time supporters of Creative Commons. I hope that this will provide [&#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:2211:\"\n<p>Following the <a href=\"https://ma.tt/2021/04/cc-search-to-join-wordpress-org/\">recent statement by WordPress&#8217;s co-founder Matt Mullenweg</a> and the <a href=\"https://creativecommons.org/2021/05/03/cc-search-to-join-wordpress/\">Creative Commons CEO, Catherine Stihler’s post</a>, I&#8217;m happy to formally announce that CC Search (with the new name Openverse) is now part of the WordPress open source project. Both Matt and I are long-time supporters of Creative Commons. I hope that this will provide a long-term, sustainable challenger to closed source photo libraries and further enhance the WordPress ecosystem.</p>\n\n\n\n<h3><strong>How Does This Affect Current Users?</strong></h3>\n\n\n\n<p>Current CC Search users will continue searching and using openly licensed images from around the internet. WordPress plans to continue the great work started by the Creative Commons project and expand search capabilities and features.</p>\n\n\n\n<h3><strong>What’s Next?</strong></h3>\n\n\n\n<p>We look forward to indexing and searching additional media, such as audio and video. As we expand our capabilities and grow the project, we look forward to integrating directly into WordPress and the media library. We hope to not only allow search and embeds of openly licensed media but pay it forward by additionally licensing and sharing your media back.</p>\n\n\n\n<h3><strong>How Can You Contribute?&nbsp;</strong></h3>\n\n\n\n<p>Stop by the Slack channel, <a href=\"https://wordpress.slack.com/archives/C02012JB00N\">#openverse</a>, and take a look at the code repositories moved under the WordPress organization <a href=\"https://github.com/wordpress/?q=openverse\">here on GitHub</a>. You can also follow along with the project on its own make page at: <a href=\"https://make.wordpress.org/openverse\">https://make.wordpress.org/openverse</a>. We are working on setting up the new team, process, and procedures.<br></p>\n\n\n\n<p>Join us in welcoming the team and community. As a treat, check out the most recent WP Briefing episode, <a href=\"https://wordpress.org/news/2021/05/the-commons-of-images/\">The Commons of Images</a>, in which Matt and I discuss CC Search and our hopes for it as part of the WordPress community.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10325\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"People of WordPress: Fike Komala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/05/people-of-wordpress-fike-komala/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 May 2021 22:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"heropress\";s: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:16:\"ContributorStory\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10270\";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:158:\"Discover Fike Komala‘s story of using #WordPress to enjoy a remote working career across the globe in this month’s People of WordPress feature. #Indonesia\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:11106:\"\n<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are not as well known.</em><br><br>Creating content with WordPress and blogging helped Fike Komala, from Indonesia, build a career where she can work remotely from different locations in the world. <br></p>\n\n\n\n<p>In 2020, Fike joined a US-based company that specializes in form building to work as a content marketer. Using her experience as a freelancer and later a full time employee, she encourages others, particularly women in Asia, to consider remote work as a career option. She is so impressed by remote working benefits, that she is now considering writing about it for a thesis for her Master&#8217;s Degree, which she started this year in Europe.<br></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"387\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/05/B5939AF2-DFFD-4471-B3F1-7738F82CEF8A.png?resize=632%2C387&#038;ssl=1\" alt=\"Fike pictured with a snow background\" class=\"wp-image-10291\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/05/B5939AF2-DFFD-4471-B3F1-7738F82CEF8A.png?w=1024&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/05/B5939AF2-DFFD-4471-B3F1-7738F82CEF8A.png?resize=300%2C184&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/05/B5939AF2-DFFD-4471-B3F1-7738F82CEF8A.png?resize=768%2C470&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>As a keen blogger, WordPress immediately impressed Fike. Her dad is a programmer, and he helped her create the first of many blogs starting when she was 10 years old. She had private and public blogs, and even an English language one to help her practice and improve her skills. </p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><strong>“I got satisfaction and happiness from pouring my thoughts in writing and publishing them in my blog. Writing my thoughts and feelings often helped me process them, and does even now.”</strong></p><cite>Fike Komala</cite></blockquote></figure>\n\n\n\n<p>With a natural talent and love for languages, Fike pursued an Information Systems degree after graduating from high school. Her course covered business learning Java, HTML, CSS, Javascript, and Android programming. She also took courses to learn Bootstrap and Ruby on Rails.&nbsp;</p>\n\n\n\n<h2>Earning Through Building With WordPress</h2>\n\n\n\n<p>Fike’s parents had a business building websites. She was drawn to this work and would help proofread and format the articles. This is how she first encountered WordPress, which was to play a pivotal role in her future career. <br></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“I saw WordPress as something more advanced than other platforms, with more themes and plugins to choose from. The default WordPress websites already looked more professional than others.”</p><cite>Fike Komala</cite></blockquote>\n\n\n\n<p>Throughout school, Fike’s experience with WordPress and blogging helped her earn extra money safely online, including translating texts from English to Indonesia, online surveys, and writing articles in English.</p>\n\n\n\n<h2>Discovering Work You Enjoy&nbsp;</h2>\n\n\n\n<p>The last year at University required a year-long full-time internship. Fike worked as an intern at a big general insurance company within the IT quality control staff. She enjoyed working with the people she met and learned a lot through this opportunity, but she declined the offer of a full-time position.&nbsp;</p>\n\n\n\n<p>Fike is a good student who loves learning and did well in her education. Through her traditional internship experience,  she found that programming in an office job did not fulfill her. It strengthened her belief in a finding a career where she could have the freedom and creativity of working remotely.</p>\n\n\n\n<p>“I was a good student, I love learning algorithms, but I didn’t love programming. I’m not that person who can stay calm finding errors in their codes, and then finding out that it’s only missing a character,” said Fike. She added: “I don’t really like the fact that I have to wake up at 6 AM and be back home at 7 PM, and do it all over again the next day.”</p>\n\n\n\n<h2>Adventure Into Remote Work&nbsp;</h2>\n\n\n\n<p>Fike spent time improving her freelance profile, revising it, and applying to jobs as a virtual assistant. She was willing to do any small website jobs such as formatting WordPress posts, designing social media posts, and processing orders for online shops. Through a freelance job submission site, she was able to work with people from across the globe, including Singapore, Australia, Europe, and America. Through the site, Fike was able to gain experience with remote working tools like Slack, Asana, Trello, and Google Suites, and the work gave her practice writing in English.&nbsp;</p>\n\n\n\n<p>It was through this site that Fike saw a job opportunity with a WordPress plugin company. She sent in her profile and blog.&nbsp;</p>\n\n\n\n<p>“This was my first time being interviewed via a video call. I was ecstatic but panicked. On the day, I woke up at 4 AM, got dressed, and opened my laptop. Weirdly, my wi-fi died that morning. So I went to the nearest cafe to get the interview done, and it went great!”</p>\n\n\n\n<p>She was hired to deliver consistency on the company’s blog.&nbsp;</p>\n\n\n\n<p>Through her job, Fike first began to contribute within the WordPress community and was able to attend her first WordCamp, WordCamp Jakarta 2018, sponsored by her firm. Through WordPress, Fike has met many generous, trusting, and helpful people. </p>\n\n\n\n<p>She said: “Because I’ve experienced the generosity of the WordPress people, I wanted to give back to the community.”</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/ZDAmqCcebOQII99V2RMYmJikoQ3u-tjy6BcCT39QWsOUrAqq2_HeqJ1735UoxVyQHTO_S_V9lzZEJ7WayLb8kY3or78oqG4Xt5ujbNUpt7Vcz7r20lp9XopkPwh85imnvRxjpWTx\" alt=\"WordCamp swag\" /><figcaption>Swag from WordCamp Jakarta 2018, that’s Wapuu ondel-ondel!</figcaption></figure>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p><strong>“I got to know the amazing community behind WordPress. How people voluntarily contribute their time, energy, and skills to the community, from development, marketing to translating.</strong> <strong>It was really inspiring.”</strong></p><cite>Fike Komala</cite></blockquote></figure>\n\n\n\n<h2>You Can Inspire Others Through Contributing</h2>\n\n\n\n<p>Fike has been an inspiration to people in her local community and globally within the WordPress community through her enthusiasm and energy.&nbsp;</p>\n\n\n\n<p>She <a href=\"https://www.youtube.com/watch?v=KHSAV_NJtTA\">talks about her joy in contributing</a> during a live interview as part of WordPress Translation Day in 2020.&nbsp;</p>\n\n\n\n<p>So determined to encourage others to become translators of WordPress, she joined the Global Translation Day event with the Indonesian Community last year and took part in wider marketing of the event. She is pictured below with some of the Indonesian polyglots team.</p>\n\n\n\n<p>She continues to support the polyglots and is a General Translation Editor for the Indonesian language. Last year, she also voiced an <a href=\"https://youtu.be/Ifqabp-36_c\">Indonesian translation of the onboarding video</a> for new contributors joining WordPress.org. She has been a regular contributor to the PerempuanWP, an initiative for Indonesian women working in the WordPress world. Working with a firm which uses the WordPress platform has strengthened her familiarity with projects in the community and encourages her interest in contributing.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh4.googleusercontent.com/H-8VelQbbEb9f5MM-SUXNudVD9U1DNs546yt_cWGRU--GSLm-PCUunnHDNFmquv9w3rWOUadxkbYr9bYsRU1Ecmhb6Ee_Deg_paNEIyyqs91_3DjgtlmfgCA_P45GNA5nf5rmpCe\" alt=\"Indonesian translation team \" /></figure>\n\n\n\n<p>To learn more about contributing to WordPress, visit <a href=\"https://make.wordpress.org/\">make.wordpress.org/</a> and follow the “get involved” link. You can join any of the weekly team meetings to get started, and there is a lot of help available.&nbsp;</p>\n\n\n\n<p>Fike says, “I want to represent Asian women. In the future, I hope I can inspire more women, especially Asians, to work remotely.” She is now studying in Europe for a Master&#8217;s in Digital Communication Leadership. She hopes to use her learning to help other women, particularly back in her home country of Indonesia.</p>\n\n\n\n<p>She continues to share her energy for learning and remote working. </p>\n\n\n\n<p>“<strong>Just learn things. As much as you can. From anywhere, about anything. Keep an open mind. Read books, listen to podcasts, and learn new skills.”</strong></p>\n\n\n\n<p><strong>She added: “If you’re working in the WordPress world, join the WordPress community. It’s a great place to learn from and connect with great people.”</strong></p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Meg Phillips (<a href=\'https://profiles.wordpress.org/megphillips91/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>megphillips91</a>) for writing this feature, to Surendra Thakor (<a href=\'https://profiles.wordpress.org/sthakor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sthakor</a>), Meher Bala (<a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>), Larissa Murillo (<a href=\'https://profiles.wordpress.org/lmurillom/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>lmurillom</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>) for additional support and graphics, and to Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) who created HeroPress. Thank you to Fike Komala (<a href=\'https://profiles.wordpress.org/fikekomala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fikekomala</a>) for sharing her #ContributorStory.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh4.googleusercontent.com/FEZ2FQJ0vQ311YoPfh6ny15NXh8saTLH_RjyDO4pUOuEGBTa-Czk63PGoWL04FawKviRfNx0QXePx-goK04X12ry1BR_WXh-kVPIfsEeItPAX6reN5fHS96q6-8dUI506ZO38Z0G\" alt=\"HeroPress logo\" /></figure>\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress series</a>.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress #WPTranslationDay</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10270\";s: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:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"WP Briefing: The Commons of Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2021/05/the-commons-of-images/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 May 2021 12:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10266\";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:238:\"In this episode, Josepha is joined by the co-founder and project lead of WordPress, Matt Mullenweg. Tune in to hear Matt and Josepha discuss the relaunch of CC Search (Openverse) in WordPress and the facets of the open source ecosystem. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/05/WP-Briefing-008.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chloe Bringmann\";s: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:24991:\"\n<p>In this episode, Josepha is joined by the co-founder and project lead of WordPress, Matt Mullenweg. Tune in to hear Matt and Josepha discuss the relaunch of CC Search (Openverse) in WordPress and the facets of the open source ecosystem.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<p><strong>Openverse Repositories </strong></p>\n\n\n\n<ul><li>Catalog:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/wordpress/openverse-catalog\">https://github.com/wordpress/openverse-catalog</a></li><li>API:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/wordpress/openverse-api\">https://github.com/wordpress/openverse-api</a></li><li>Frontend:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/wordpress/openverse-frontend\">https://github.com/wordpress/openverse-frontend</a></li></ul>\n\n\n\n<p><strong>Tech Stack Outline</strong></p>\n\n\n\n<ul><li><strong>Frontend</strong>&#8211; Languages: <ul><li>JavaScript, CSS/SCSS</li><li>Libraries/Services: Vue.js, Nuxt.js#&nbsp;</li></ul></li><li><strong>API</strong>&#8211; Languages: <ul><li>Python, PostgreSQL</li><li>Libraries/Services: Django, Elasticsearch, Redis</li></ul></li><li><strong>Catalogue</strong>&#8211; Languages: <ul><li>Python, PostgreSQL</li><li>Libraries/Services: Apache Airflow, PySpark</li></ul></li></ul>\n\n\n\n<p>Join the WordPress Slack instance, #openverse</p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10266\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. This is usually the podcast where you can catch quick explanations of some of the ideas is behind the WordPress open source project. Today, I have a little bit of a different topic. It&#8217;s still WordPress, it&#8217;s still open source, but it&#8217;s kind of peering into some stuff for the future as opposed to looking at where we are today or how we got to where we are today.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:36</p>\n\n\n\n<p>You might have recently seen an announcement from Matt that CC Search is joining the WordPress project. This is a really exciting thing for open source, for sure, and definitely, from my perspective, for WordPress. And so I invited Matt to join me today to take a look at what he had in mind with bringing that particular project into our project and what we have in mind for the future. And so, today, this is the WordPress Briefing with Matt and Josepha. And I hope you enjoy the conversation we had. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:22</p>\n\n\n\n<p>So, we recently announced for WordPress that we essentially acquired CC Search, a project that&#8217;s been part of Creative Commons. And they recently chose a different kind of roadmap for the work they&#8217;re doing in the future. And so it seemed like a really great opportunity to bring this tool and this, I don&#8217;t know, this kind of experience for our users into the WordPress project. So Matt, what are your thoughts about how, like this commitment to images with CC licenses, with Creative Commons licenses, can impact WordPress and how we work in the open web.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>02:09</p>\n\n\n\n<p>I think it&#8217;s pretty exciting because Creative Commons exists to do for media, you know, images, audio, etc., what open source has done for code. And so for people who choose to want to donate their creative work under these licenses, much like anyone who contributes a plugin, or code or documentation or translations for WordPress, now people for whom their method of expression is, let&#8217;s say, photography, can put that into the comments like literally, I like why it&#8217;s called the Creative Commons, it&#8217;s such a good name. It can be accessed within everyone&#8217;s dashboard for WordPress. And those images can start to really be part of the fabric of the web the same way that code that runs WordPress or its plugins is part of the fabric of the web.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:57</p>\n\n\n\n<p>For anyone who&#8217;s listening who&#8217;s not actually already familiar with this concept of the tragedy of the commons, do you want to give us the elevator pitch of what that means and why it&#8217;s so important for WordPress to try to counterbalance that in our work?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>03:12</p>\n\n\n\n<p>Sure, the tragedy of the commons, you know, I think the canonical example is as a shared field in a town, and it doesn&#8217;t belong to anyone, so anyone can use it. And when too many farmers took their sheep there, they would overeat the grass, and then there was no more grass left because it was being overutilized, and there was no one owning the field to say, Hey, we need to practice a more sustainable amount of sheep. grass in</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:39</p>\n\n\n\n<p>Put more grass in there.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>03:41</p>\n\n\n\n<p>So basically, the idea is like a shared resource that gets overused and then disappears. With software, we have the opportunity to have the opposite, which is a wealth of comments where every person using the thing actually has the opportunity to make it a little bit better. And that is really beauty of like Wikipedia, open source where every person using it might contribute a small fix, or a translation or a bug report or tell a friend about it, or basically be part of making this thing better, which you know, WordPress is history is very much an example of, and then as it gets better, more people want to use it. And the beautiful thing about software is you can have economics of abundance versus the economics of scarcity. There&#8217;s not one field used, but every additional incremental user of WordPress makes this community stronger and creates a larger market for the products inside it. So those types of dynamics can have the opposite of the tragedy of the commons.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:39</p>\n\n\n\n<p>Absolutely. I love this idea that you brought it up in your question, not your question, in your answer right at the top. I love this idea of acknowledging that code isn&#8217;t the only fabric available in open source and certainly not the only fabric of the internet as we know it. This idea of like, let&#8217;s bring Creative Commons licensed images into a more long-term space for WordPress. Do you think that that at some point can apply to videos and other sorts of audio files?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>05:21</p>\n\n\n\n<p>Absolutely. There already is a ton of Creative Commons licensed content out there that people can use. But there&#8217;s a discoverability problem, you know? Each individual image or audio file or video is, is a little bit of an island. So that&#8217;s why it&#8217;s so important that there&#8217;s the equivalent of a search engine that allows people to discover all the great stuff that&#8217;s out there. And what happens today is there&#8217;s stock photography sites, some of which used to be Creative Commons-based, but many have moved away from that. So they essentially relicense their user contributions. Or people, if we&#8217;re being real, people just go to Google images, and they might utilize images that they don&#8217;t actually have rights to. It&#8217;s not the end of the world, but it&#8217;s not ideal. And so we can create this really compelling directory experience of imagery, which people have chosen to share and want to be used. I think that&#8217;s a much better outcome than the equivalent of piracy.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:21</p>\n\n\n\n<p>Yeah, yeah, absolutely. So I leapt right into this and didn&#8217;t really give any context to what CC Search is or anything, but for anyone who is not familiar with this tool already, CC Search is, as Matt mentioned, a search engine that currently is focused specifically on images that use open licenses. The Creative Commons licenses are like the content-specific version of GPL for code, which is a really big deal, I think. If wishes were fishes, Matt, and you had your total hope ahead of you, what is your hope for the relaunch of this product and this tool in WordPress?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>07:15</p>\n\n\n\n<p>Well, first and foremost, I think we can improve the experience of designing and contributing themes and then modifying them with this really fantastic image directory if we&#8217;re able to build it in the media library. And lots of plugins like Jetpack do some version of this. I think that Jetpack uses Pexels or one of the proprietary, but open libraries. And so we can make it fully, like you said, the equivalent of GPL and open source, all the better. I think longer-term, I&#8217;d love to have a way for people who are adding media to the WordPress site to set it to be available under a Creative Commons license. So just to make it easy and built-in for people to create more Creative Commons license imagery. And then, you know, with the integration of Gutenberg and other things, we can make it easy for other people to use it and credit back the original author if they choose to. And what we find is that even though with CC0, which is essentially a kind of like putting something into the public domain, credit is not required. If you make it the default to link back to the original photographer, author, most people believe that because they like creating things that they use. So you get the best of both worlds; you have the freedom of use for any purpose, including not requiring the credit. But then, just by having it by default, when you insert one of these images, a lot of people are going to leave that and link back to the original author, which I think is also really cool. Like you&#8217;re not required to have a credit link on WordPress, but most people leave the Powered BY WordPress on there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:45</p>\n\n\n\n<p>One of the interesting areas, you mentioned Pexels in this case. One of those interesting areas that we, as a project, can really explore here is how to make it so that the metadata gives you confidence in the origin of the image. Like I don&#8217;t believe that there are any set standards for that. I&#8217;ve just started my research, obviously, because they&#8217;re brand new to us, but I just don&#8217;t think there are any standards available there. And, I think that there is an opportunity for WordPress as a true supporter of the open web to help change the fact that we don&#8217;t have that’s one of the main competitive disadvantages that open source libraries have been trying to combat and especially with Unsplash, who eventually did get purchased by Getty Images. Still, I feel like part of what must have driven that decision to change the licensing terms had to be that they are up against that behemoth of Getty Images where people know where the things came from. They know where the images came from, and they can trust that lineage and model releases and all that stuff. I&#8217;m just really interested to see how we can; I don&#8217;t know; I hate to say dignify contributors who are offering their contributions to open source in this way. But, it also is kind of that there&#8217;s no sense in saying that just because you did not accept payment from getting images, your photos weren&#8217;t any good, or your images did not have an excellent path to where they are housed at that moment.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>10:39</p>\n\n\n\n<p>I mean, it&#8217;s really fun to contribute to something larger than yourself. And for many folks, you know, their gift, their craft is something like photography. And so there&#8217;s always going to be the sort of paid marketplaces and, and something like Shutterstock, I think really fantastic companies and services. I think a marketplace for paid content. But we just want to make an alternative, so those who want to donate their work to the world, much like engineers, and designers, and translators of WordPress, donate their work some of that effort to the world, they can do so. Right now, there are some places for that, but we&#8217;re going to try to create one that is fully open, has no advertising, has an open API. So other CMSs can access it too.&nbsp; You know, we&#8217;re going to try to bring the WordPress philosophy to this space.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:29</p>\n\n\n\n<p>Gosh, I just love that. While we&#8217;re on the question of contributing to something bigger than yourself, bringing the WordPress philosophy into this space, how do you think CC Search will impact the current media library and how WordPress handles media in general? Or do you have an idea about how it will impact that? Sometimes we don&#8217;t know until we get in?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>11:53</p>\n\n\n\n<p>Yeah, I think within Gutenberg, the idea of adding an image from an online library or a search is something we&#8217;ve wanted to do for a while. But either the licensing made it a little tricky, or, you know, some of the sites that did have open things, maybe the site itself had like a lot of advertising or pop-ups or things like that. So by having this hosted by wordpress.org, we&#8217;ll have a clean, open source, and ad-free place that people can access. I suppose it&#8217;s also worth saying that CC Search, which we&#8217;re rebranding as Openverse, is actually all the code behind is open source as well. So there is going to be a new project on WordPress&#8217;s GitHub that will be this open source search engine. So that&#8217;s also part of the contributions; we&#8217;ll be pointing this search engine to try to index and collect Creative Commons license media, but perhaps it could also provide a base for someone else wanting to build a different characters engine or just host Openverse themselves and run it themselves; that is totally fine.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>13:00</p>\n\n\n\n<p>I should probably mention, for any of the WP Briefing listeners who are contributing to the WordPress project itself, there is a brand new team that we&#8217;re working on building, and for one wander over and welcome everybody, we are welcoming in an open source community into our open source community. And so, of course, we want to make sure that they know how to get around and feel welcome in the space. But also, anything that you are interested in helping to contribute to that particular project, I think would be helpful. WordPress is big; we have a long history. And so I think I feel confident in saying that, if I were on that team that&#8217;s bringing in this new tool, I would hope that there were some OG WordPressers, who were available to help me discover the ins and outs of things, especially as its 18 years of us.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>14:04</p>\n\n\n\n<p>Yeah, it&#8217;s also a new technology stack. So let&#8217;s say you want to be involved in WordPress, but your expertise is more on the Python side, or Elastic Search or something like that. We now have a project where people who are into that or want to learn about it can get involved. Because, of course, you know, contributing and being involved with open source is probably the best way to learn a technology, better than any college degree.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:28</p>\n\n\n\n<p>I was just talking to some folks about that; our active learning opportunities and our passive learning opportunities get into a different balance as we get older. And active learning opportunities are for real in school, right? And our passive learning opportunities where you get to look at someone else&#8217;s code, you get to review proposals on user flows, and things are harder and harder to come by unless you happen to be in an open source project where we&#8217;re just working on that in the open all day, every day. And I&#8217;ll put a link to the repos in the show notes, and also, I&#8217;ll include a list of the tech stack that we&#8217;re looking at there, just so that no one has to like, chase it down. But yeah, I&#8217;m excited about this new integration, not only for the CMS but also for the community.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>15:26</p>\n\n\n\n<p>And the whole library will be available to any plug-in who wants to call to it. And like we said, even other CMSs, much like we designed Gutenberg to be able to be used by other CMSs, how cool would it be if Drupal or Joomla or others were also able to leverage this library and allow their users to contribute to it as well?</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:47</p>\n\n\n\n<p>Yeah, absolutely. Absolutely. There is a burning question that I feel like we probably should just go ahead and answer here. I&#8217;ve been asked a few times, and I think you have been asked a few times whether this is an actual acquisition. And If yes, then what entity is it under? Is it under the WordPress Foundation? Is it under Automattic?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>16:10</p>\n\n\n\n<p>It&#8217;s a little complicated because, as you know, WordPress.org is not part of the Foundation. So basically, Automattic paid Creative Commons, the nonprofit. They will essentially redirect the old URL, so old links to Creative Commons Search won&#8217;t break. And we ended up hiring some of the people that they were parting ways with into Automattic. And then we put that open source code, and we&#8217;ll run the service on WordPress.org, and then those we hired, Automattic hired, will contribute to WordPress.org and the open source projects that power what we&#8217;re calling Openverse now.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:54</p>\n\n\n\n<p>I am.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>16:56</p>\n\n\n\n<p>That&#8217;s kind of an acquisition, but also from a nonprofit, and then going into something, which is not a nonprofit, but is open source and sort of freely available, which is WordPress.org, the website.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:06</p>\n\n\n\n<p>Yeah, that has been hard for me to answer because you&#8217;re right, it&#8217;s not like it was donated to WordPress or something. But everything that we&#8217;re doing is being donated back to the project, and of course, hopefully, really living into that WordPress ethos that we have of giving back to, to the project, something that made your work and your life better. So there&#8217;s some, some finger-crossing going on in there.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>17:37</p>\n\n\n\n<p>We could have skipped some of the steps because the code was open source; we could have just used it or something like that. But it was also a good opportunity, I think, to support the Creative Commons organization. And like we said, as part of that donation, there&#8217;ll be redirecting Creative Commons Search to WordPress.org. And honestly, we don&#8217;t need that, but it just from the point of view of keeping links workings, which is a big passion of mine. I like that none of the links will break or things to the Creative Commons Search, which I think has been around for&#8230; I don&#8217;t actually know the exact timeline, but a very long time. It&#8217;s been part of the internet for a long time. So we&#8217;re happy that it can now continue and be something that can plausibly be around for many decades to come.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:23</p>\n\n\n\n<p>Yeah, we&#8217;re going to build ourselves a little sustainable program around this project, and it&#8217;s going to be beautiful; I&#8217;m excited.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:31</p>\n\n\n\n<p>I did want to give everybody a cultural heads up. When I say crossing my fingers, I know that for some of our cultures, that means I was lying. That is not what I&#8217;m saying—crossing my fingers and moving forward on this with a lot of hope.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:51</p>\n\n\n\n<p>I tried to be careful about my local idioms when I&#8217;m talking to folks who don&#8217;t know that I&#8217;m from Arkansas, so I sometimes say weird things. But I&#8217;ve given up on y&#8217;all, for instance, like that has made its way right back into my language.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>19:09</p>\n\n\n\n<p>Y&#8217;all is great. In Texas, we had a funny thing, which maybe applies to you now, which is &#8220;more nervous than a long-tailed cat in a room full of rocking chairs.&#8221; I bet you haven&#8217;t heard that one.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:21</p>\n\n\n\n<p>I have not, but I love it, and I&#8217;m going to fold it into my personal vocabulary for later use.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:30</p>\n\n\n\n<p>The response to this has been overwhelmingly positive, and I know that I am incredibly positive. I just mentioned like I&#8217;m moving forward through this with hope, even though there&#8217;s a lot of stuff that I don&#8217;t actually know about how we can implement it. I have never brought an existing open source community into an open source community that I&#8217;m currently working with. So there&#8217;s a lot of learning to be done in there. But, from your side Matt, like, are there any things that you are feeling anxiously hopeful about for this? Anything that you hope is right, but you&#8217;re not sure about?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>20:14</p>\n\n\n\n<p>Oh, this is just the first step of many. So just having the search engine, is I think good to provide a service to the internet. But where we can really leverage it is those next steps we already talked about, which is really building out the API and integrating the API with the WordPress admin to make it easily accessible within people&#8217;s dashboards. And the Gutenberg blocks to embed these images, quickly and easily, and with all the proper credit and everything. And then the next step, which was probably the one I&#8217;m most excited about, which is enabling folks to contribute to the Creative Commons. And by that, I mean the Commons of Images, which have open licenses and are encouraged for reuse and remixing and all those sorts of great things. And I think that anything we can do to increase more of that stuff on the internet also enables a lot of creativity and innovation.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:10</p>\n\n\n\n<p>All right. Well, that was an excellent conversation. I am really excited about this. I want to, for my work, just say a huge welcome to the folks over at CC Search and our brand new group around Openverse, and a big thanks to the folks over at the Creative Commons group. Matt, do you have anything else you want to share with any of our audience?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>21:39</p>\n\n\n\n<p>No, I feel great that we could support the Creative Commons, keep this going for the open internet, and so excited to work alongside the folks who have been working on Openverse and take it to the next iterations and the next level.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:56</p>\n\n\n\n<p>Beautiful. Well, Matt, thank you so much for joining me today. This was a wonderful conversation. My friends, this has been Matt Mullenweg, WordPress project co-founder, and project lead.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>22:08</p>\n\n\n\n<p>Thank you so much for having me.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:17</p>\n\n\n\n<p>Thank you for tuning in today to the WordPress Briefing. I hope that conversation made you as excited as I am about this new adventure that we&#8217;re embarking on with CC Search and that whole team. I&#8217;m going to put in the show notes a few links to where you can find them, where they&#8217;re doing their work, what you can collaborate on, and also some notes about the tech stack that goes into it. I&#8217;m your host, Josepha Haden Chomphosy.Thanks again for joining me and I&#8217;ll see you in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10266\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: April 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:69:\"https://wordpress.org/news/2021/05/the-month-in-wordpress-april-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 May 2021 15:00: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:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10253\";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:297:\"As WordPress grows, both in usage as a CMS and in participation as a community, it’s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS.&#160; That was [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Hari Shanker R\";s: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:11530:\"\n<blockquote class=\"wp-block-quote\"><p>As WordPress grows, both in usage as a CMS and in participation as a community, it’s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS.&nbsp;</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the “<a href=\"https://wordpress.org/news/2021/04/your-opinion-is-our-opportunity/\">Your Opinion is Our Opportunity</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the importance of co-development and testing for the continued growth and maintenance of WordPress. This month’s updates align closely with these ideas. Read on and see for yourself.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7.1 is launched</h2>\n\n\n\n<p>WordPress security and maintenance release &#8211; <a href=\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\">5.7.1</a> came out in April. The release fixes two major security issues and includes 26 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Check out the <a href=\"https://make.wordpress.org/core/5-8/\">5.8 Development Cycle</a>. To contribute to core, head over to <a href=\"https://core.trac.wordpress.org/\">Trac</a>, and<a href=\"https://core.trac.wordpress.org/report/6\"> pick a 5.8 ticket</a> –– more info in the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>. Don’t forget to join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&amp;min=00&amp;sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&amp;min=00&amp;sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.3, 10.4, and 10.5 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">version 10.3</a> on April 2, <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> on April 14, and <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a> on April 30! <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">Version 10.3</a> improves the block toolbar and the navigation editor, whereas <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> adds block widgets to the customizer and improvements to the site editor list view. In <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a>, you will find a set of new block patterns and enhancements to the template editing mode, along with the ability to embed PDFs.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. If you are unfamiliar with the Gutenberg plugin, <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\">learn more in this post</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>Following the <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Full Site Editing (FSE) feature demo</a> hosted by <a href=\"https://profiles.wordpress.org/matveb/\" target=\"_blank\" rel=\"noreferrer noopener\">Matías Ventura</a>, the project leadership decided that WordPress 5.8 will only include some FSE features, such as a template editor for pages/blank templates, a widget editor screen, and the theme.json mechanism. Other features like the Global Styles interface and Site Editor (managing all templates) will be made available later. The team has <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">started working on the next steps</a> in shipping these chosen FSE features with version 5.8.</p>\n\n\n\n<p>New to FSE? Check out <a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\">this blog post</a> for a high-level overview of the project. You can help test FSE by participating in the <a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">latest FSE Outreach Program testing call </a>–– leave your feedback by May 5th. Want to participate in future testing calls? Stay updated by following the <a href=\"https://make.wordpress.org/test/2021/04/22/upcoming-fse-outreach-program-schedule/\">FSE outreach schedule</a>. You can also <a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">submit your questions</a> around FSE right now.</p>\n\n\n\n<h2>WordCamp Europe 2021 is on the calendar</h2>\n\n\n\n<p>One of the most exciting WordPress events,&nbsp; <a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a>, will be held online on June 7-9, 2021! Event organizers have opened up calls for <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2021/call-for-media-partners-and-supporters/\">media partners</a>. Free tickets for the event will be available soon — <a href=\"https://europe.wordcamp.org/2021/#subscribe-email\">sign up for email updates</a> to be notified when they are out!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">41% of the web</a>!</li><li><a href=\"https://make.wordpress.org/updates/2021/04/15/quarterly-updates-q1-2021/\">Q1 2021 updates from the WordPress project</a> have been published.</li><li>The Core Team discussed a <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">proposal</a> to treat Federated Learning of Cohorts (FLoC), a Google Chrome feature, as a security concern. The team <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41207\">eventually decided</a> to track the status of the FLoC trial/implementation in a <a href=\"https://core.trac.wordpress.org/ticket/53069\">Trac ticket</a> and monitor periodically.&nbsp;</li><li>The Core Team will <a href=\"https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/\">remove Internet Explorer 11 support in WordPress version 5.8</a>.&nbsp;</li><li>The Community Team has opened up a <a href=\"https://make.wordpress.org/community/2021/04/26/discussing-the-path-to-in-person-wordcamps/\">discussion on the path to in-person WordCamps</a> and is requesting feedback from community members.</li><li>The Community Team is also <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">requesting feedback</a> on whether companies who run competitive ads against WordPress can apply to sponsor WordCamps.&nbsp;</li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021</a> and <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece 2021</a> were held successfully in April. Videos of WordCamp Centroamérica are now available <a href=\"https://wordpress.tv/event/wordcamp-centroamerica-2021/\">on WordPress.tv</a>! While you are at it, don&#8217;t miss this<a href=\"https://central.wordcamp.org/news/2021/04/29/making-a-great-online-conference-experience-at-wordcamp-prague/#\"> excellent recap of WordCamp Prague 2021</a> on the WordCamp Central blog.</li><li>Contributor teams are actively working on building the <a href=\"https://wordpress.org/patterns/\">Block Pattern Directory</a>. You can read about work updates on this project from the <a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">Meta Team</a> and the <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">Design Team</a>.</li><li>Check out the <a href=\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\">blog post on getting started with the Figma WordPress Design Library</a>. You can use the library to create design prototypes for the WordPress UI in <a href=\"https://www.figma.com/\">Figma</a>.</li><li>The Polyglots Team is making significant progress on the <a href=\"https://make.wordpress.org/polyglots/2021/04/26/polyglots-training-working-group-update-3/\">Polyglots Training course</a>.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/04/23/discussion-contributor-ladders-for-the-training-team-and-learn-wordpress/\">proposed a contributor ladder</a> as a resource for team contributors to understand ways to participate and find growth opportunities.&nbsp;</li><li>The <a href=\"https://github.com/WordPress/Requests\">Requests library</a> has moved to the WordPress GitHub organization and has a new release: <a href=\"https://github.com/WordPress/Requests/releases/tag/v1.8.0\">version 1.8.0</a>.&nbsp;</li><li>The Docs Team is<a href=\"https://make.wordpress.org/docs/2021/04/05/update-on-the-revision-of-documentation/\"> working on redesigning HelpHub</a> by reviewing its content and design.</li><li>The Themes Team has shared a proposal on <a href=\"https://make.wordpress.org/themes/2021/04/22/removing-blockers-for-block-themes/\">fixing upload issues for block themes</a>.</li><li><a href=\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\">Tyler Lau</a> from the U.S. was featured in April’s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The following folks contributed to April’s Month in WordPress: <a href=\'https://profiles.wordpress.org/andreamiddleton/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>andreamiddleton</a> <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> <a href=\'https://profiles.wordpress.org/chaion07/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chaion07</a> <a href=\'https://profiles.wordpress.org/hlashbrooke/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hlashbrooke</a> and <a href=\'https://profiles.wordpress.org/jrf/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jrf</a>&nbsp;</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10253\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Getting Started with the Figma WordPress Design Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 28 Apr 2021 17:52:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10173\";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:53:\"Get Started with the Figma WordPress Design Library! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chloe Bringmann\";s: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:26010:\"\n<p>Created by James Koster, (<a href=\'https://profiles.wordpress.org/jameskoster/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jameskoster</a>)</p>\n\n\n\n<p>As the name suggests, the WordPress Design Library is a library of WordPress design assets, enabling anyone to quickly create design prototypes for WordPress UI in Figma.</p>\n\n\n\n<p>These tools are useful for designers when creating new UI and for anyone looking to contribute ideas, enhancements, or even solutions to bug reports. Sometimes pictures really do speak a thousand words.</p>\n\n\n\n<p>In this post, we&#8217;ll talk about some key features of Figma before diving into a practical example that demonstrates some of the WordPress Design Library utilities.</p>\n\n\n\n<h2><strong>What Is Figma?</strong></h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=632%2C296&#038;ssl=1\" alt=\"\" class=\"wp-image-10174\" width=\"632\" height=\"296\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=1024%2C481&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=300%2C141&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=768%2C361&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=1536%2C722&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?w=1770&amp;ssl=1 1770w, https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><a rel=\"nofollow\" href=\"https://www.figma.com/\">Figma</a> is a collaborative design tool that members of the WordPress project&#8217;s design team have<a href=\"https://make.wordpress.org/design/2018/11/19/figma-for-wordpress/\"> been using</a> for several years to work on and share design concepts. It offers a variety of handy features such as: in-browser access, rich prototyping tools, component libraries, code inspectors, live embeds, inline commenting, plugins, and much much more.</p>\n\n\n\n<p>Perhaps best of all, it is totally free to sign up and start playing around. If you join the WordPress.org Figma organization (instructions below), you&#8217;ll gain access to the WordPress Design Library enabling you to design WordPress UI in no time.</p>\n\n\n\n<h2><strong>What Is the WordPress Design Library?</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In Figma, you can share components and styles by publishing them, transforming your file into a library so that you can use instances of those components in other files.</p><p></p><p></p><cite><a rel=\"nofollow\" href=\"https://www.figma.com/best-practices/components-styles-and-shared-libraries/#:~:text=Libraries%3A%20In%20Figma%2C%20you%20can,instances%20of%20your%20components%20live.\">Figma.com</a></cite></blockquote>\n\n\n\n<p>It may be easiest to think of the WordPress Design Library as a visual representation of all the javascript components that compose UI in the WordPress codebase. As an end user of the library, you can use those components in a self-contained environment to create new interface designs. It&#8217;s kind of like a big LEGO box containing all the UI pieces (buttons, form inputs, etc.) that you can use to create and try out new designs.</p>\n\n\n\n<figure class=\"wp-block-jetpack-image-compare\"><div class=\"juxtapose\" data-mode=\"horizontal\"><img loading=\"lazy\" id=\"10175\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image13.png?resize=632%2C340&#038;ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-before\" data-recalc-dims=\"1\" /><img loading=\"lazy\" id=\"10176\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image6.png?resize=632%2C340&#038;ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-after\" data-recalc-dims=\"1\" /></div></figure>\n\n\n\n<p>Creating designs with these assets enables rapid ideation on new interfaces by removing mundane processes that one would ordinarily have to work through. Nobody wants to repeatedly double-check that the button they made perfectly matches the buttons rendered by the code! And on the flip-side of that coin, anyone sharing a design with others will generally endeavor to make specific elements (like buttons) match what exists in the code as closely as possible. The WordPress Design Library solves both these headaches and more.</p>\n\n\n\n<p>An additional benefit to these assets visually matching what exists in the codebase is that any designs you create with them will inherently make use of the latest WordPress design language and consequently <em>feel</em> like WordPress with almost no effort required. Passing such designs on to developers makes them easier to interpret and implement too.</p>\n\n\n\n<h2><strong>Figma Fundamentals</strong></h2>\n\n\n\n<p>Before getting into the practical section of this post, let&#8217;s quickly cover some of the fundamental features of Figma libraries. This will help prepare us for working with the WordPress Design Library.</p>\n\n\n\n<h3><strong>Components</strong></h3>\n\n\n\n<p>As we touched on above, the library consists of &#8220;components&#8221; that serve as visual counterparts to their code-based equivalents. That is to say, there is a Button component in Figma, <em>and</em> a matching Button component in the WordPress codebase.</p>\n\n\n\n<p>But what <em>is</em> a Figma component?</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Components are elements you can reuse across your designs. They help to create and manage consistent designs across projects.</p><p></p><cite><a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">help.figma.com</a></cite></blockquote>\n\n\n\n<p>Let&#8217;s quickly explore some of the properties of Figma components to understand the ways they help when working on our next design.</p>\n\n\n\n<h3><strong>Variants</strong></h3>\n\n\n\n<p>Some Figma components offer variants. One example is Button(s) which all have the following states:</p>\n\n\n\n<ul><li>Resting</li><li>Hover</li><li>Focus</li><li>Disabled</li></ul>\n\n\n\n<p>These can be manipulated via the variants interface in Figma:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"449\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=632%2C449&#038;ssl=1\" alt=\"\" class=\"wp-image-10179\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=1024%2C727&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=300%2C213&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=768%2C545&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Other examples of components with variants are form inputs and menu items. Variants are a new feature in Figma, so we&#8217;ll be adding more over time.</p>\n\n\n\n<h3><strong>Overrides</strong></h3>\n\n\n\n<p>Although any components you insert are intrinsically linked to the master component in the library, it is possible to override some properties.</p>\n\n\n\n<p>While working with an instance of the Button component, you can change things like the label, or even the background color, while maintaining the link to the master component in the library. If you&#8217;re familiar with git workflows, this is kind of like creating a local branch. Any changes you make can easily be reset in a couple of clicks.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"527\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=632%2C527&#038;ssl=1\" alt=\"\" class=\"wp-image-10180\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=1024%2C854&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=300%2C250&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=768%2C641&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Overrides made to your local instance will persist even when the master component is updated. So if your design calls for a button with a green background, you can apply that override safely with the knowledge that even if the master component is updated, your button can inherit those updates and remain green.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>We&#8217;ve only really scratched the surface of components here. So I would recommend the official <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">Figma documentation</a> for more advanced information.</p>\n\n\n\n<h3><strong>Figma Styles</strong></h3>\n\n\n\n<p>In addition to components, styles are also published as part of the WordPress Design Library. They have similar properties to components in that a master style exists in the library and can be utilized in your local Figma file. Just like Components, Styles will receive updates when changes to the library are published.</p>\n\n\n\n<p>Styles are used to define colors, typographical rules, and effects like drop-shadows present in the WordPress codebase. They enable you to apply things like text or background colors that will match other UI parts.</p>\n\n\n\n<p>Using Styles from the library, you ensure that your creations match existing UI elements, making it easier to implement.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"799\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=632%2C799&#038;ssl=1\" alt=\"\" class=\"wp-image-10181\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=810%2C1024&amp;ssl=1 810w, https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=237%2C300&amp;ssl=1 237w, https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=768%2C971&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?w=1152&amp;ssl=1 1152w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>To learn more about styles in Figma, I recommend the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360039238753-Styles-in-Figma\">official documentation</a>.</p>\n\n\n\n<h3><strong>Views and Stickers</strong></h3>\n\n\n\n<p>&#8220;Stickers&#8221; are simply arrangements of Components and Styles that have been combined to represent common UI elements. They are not good candidates for full componentization due to their frequent customization needs. Examples of Stickers include the Inspector sidebar and the block inserter:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"770\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=632%2C770&#038;ssl=1\" alt=\"\" class=\"wp-image-10182\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=841%2C1024&amp;ssl=1 841w, https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=246%2C300&amp;ssl=1 246w, https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=768%2C935&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?w=1113&amp;ssl=1 1113w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Their utility is simple: find the sticker you need, peel (copy) it from the WordPress Design Library, and stick (paste) it into your local file before customizing as needed.</p>\n\n\n\n<p><em>Stickers</em> are not Figma features like Components and Styles, but any stickers you copy to a working file will stay up to date by virtue of their underlying assets.</p>\n\n\n\n<p><em>Views</em> are arrangements of components, styles, <em>and</em> stickers.</p>\n\n\n\n<h2><strong>Designing a Block Using the WordPress Design Library</strong></h2>\n\n\n\n<p>Okay, now that we have a handle on the basics of Figma libraries and their features and the utilities of the WordPress Design Library like Stickers and Views, let&#8217;s work through a practical example – designing the UI for a brand new block.</p>\n\n\n\n<h3><strong>Getting Started</strong></h3>\n\n\n\n<p>All you need to get started is a Figma account added to the WordPress.org Figma organization.</p>\n\n\n\n<p>Once you&#8217;ve signed up at<a href=\"https://www.figma.com/\"> Figma</a>, simply join the<a href=\"http://wordpress.slack.com/messages/design/\"> #Design</a> channel on the community Slack and request an invite. Include your Figma username, and a friendly community member will help get you set up in no time.</p>\n\n\n\n<p>Now the fun begins!</p>\n\n\n\n<p>To create a fresh new design file in Figma, visit the<a href=\"https://www.figma.com/files/project/1339415/Gutenberg?fuid=652576565531990233\"> Gutenberg project</a> and click the &#8220;+ New&#8221; button.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"395\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=632%2C395&#038;ssl=1\" alt=\"\" class=\"wp-image-10183\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=1024%2C640&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=300%2C187&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=768%2C480&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?w=1469&amp;ssl=1 1469w, https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Now let&#8217;s include the WordPress Design Library in our working file so that we have access to all the goodies we&#8217;ll need:</p>\n\n\n\n<ol><li>Open the &#8220;Assets&#8221; panel and click the little book icon to view the available Team Libraries.</li><li>In the modal, toggle the WordPress Design Library on. You can leave the others off for now.</li></ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=632%2C341&#038;ssl=1\" alt=\"\" class=\"wp-image-10184\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=1024%2C553&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=300%2C162&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=768%2C415&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=1536%2C829&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>After closing the modal, you&#8217;ll notice a number of components become visible in the assets panel. To insert them, they can be dragged on to the canvas:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=632%2C341&#038;ssl=1\" alt=\"\" class=\"wp-image-10185\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=1024%2C553&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=300%2C162&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=768%2C415&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=1536%2C829&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It&#8217;s kind of like inserting a block <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;\" /></p>\n\n\n\n<h3><strong>Creating a Pizza Block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f355.png\" alt=\"🍕\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></strong></h3>\n\n\n\n<p>I love to eat pizza, so for fun, I&#8217;m going to design a new block that simply allows the user to display a delicious pizza in their posts and pages. I want the block to include options for a total number of slices and different toppings.</p>\n\n\n\n<h3><strong>Work Out the Flow</strong></h3>\n\n\n\n<p>I always like to concentrate on individual flows when designing blocks. That is to say, the linear steps a user will take when working with that block. In this case, I want to create visualizations of the following steps/views in our Figma file:</p>\n\n\n\n<ol><li>Inserting the block from the Block Inserter</li><li>The Pizza Block placeholder state including options in the block, its Toolbar, and the Inspector</li><li>The configured Pizza Block settings</li><li>The end result – a delicious pizza sitting comfortably on the canvas</li></ol>\n\n\n\n<h3><strong>Sketch the New States</strong></h3>\n\n\n\n<p>Thanks to the WordPress Design Library, I&#8217;ll be using as many existing UI components as possible, but I still need a rough idea of how they will be composed in the new interfaces that my Pizza block will require. I normally find it helpful to sketch these out on paper.</p>\n\n\n\n<p>Here&#8217;s the placeholder state which users will see when they first insert the block. This should be all I need:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"843\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?resize=632%2C843&#038;ssl=1\" alt=\"\" class=\"wp-image-10186\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?w=768&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3><strong>Prepare the Views and Stickers</strong></h3>\n\n\n\n<p>Helpfully, there are Views in the WordPress Design Library I can use for each of the steps in the flow outlined above.</p>\n\n\n\n<p>I open the library, navigate to the Views page, find the views I need, copy them, and paste into my working file.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"374\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=632%2C374&#038;ssl=1\" alt=\"\" class=\"wp-image-10187\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=1024%2C606&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=300%2C178&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=768%2C455&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=1536%2C910&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It is very important to <strong>copy</strong> (not cut) Views from the library so that they remain intact and other people can still access them. If you cut them, they&#8217;ll be gone forever, so please don&#8217;t do that <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;\" /></p>\n\n\n\n<p>I&#8217;m also going to need a block placeholder sticker, so I navigate to the Stickers page, copy the one that most closely resembles my sketch from before, and paste it into my working file.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"374\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=632%2C374&#038;ssl=1\" alt=\"\" class=\"wp-image-10188\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=1024%2C606&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=300%2C178&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=768%2C455&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>As with views, please only <strong>copy</strong> stickers; do not cut them.</p>\n\n\n\n<h3><strong>Gather the Components</strong></h3>\n\n\n\n<p>Referring back to the placeholder state I sketched out on paper (it can be helpful to import this into your Figma file), I can see that I&#8217;m going to need some form elements to realize the design.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" width=\"632\" height=\"446\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=632%2C446&#038;ssl=1\" alt=\"\" class=\"wp-image-10189\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=1024%2C722&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=300%2C211&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=768%2C541&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=1536%2C1083&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?w=1999&amp;ssl=1 1999w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>I navigate to the Assets panel, locate the components I need, and drag them into my file:</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/UDyZdtZGo9N0e2qwgyIyz8V3xu9_zwGW9qBbBnozvwmXmVYURZ-ROLANtW7FafWYbQRnPQNWeRupk_9_1nzmKn8gRBlYDMKYR3QpwAubv8ZKAPMS_uV9VaYHsjfPItfqPiY0d1X5\" alt=\"\" /></figure>\n\n\n\n<p>Helpful tip: Once a component has been inserted, you can transform it into another component via its settings panel. Sometimes it is easier to copy/paste a component you already inserted and transform it this way, rather than opening the assets panel over and over.</p>\n\n\n\n<h3><strong>Arrange the Views, Stickers, and Components to Create a Coherent Design</strong></h3>\n\n\n\n<p>Now that we’ve gathered all the individual pieces we need, it&#8217;s simply a case of arranging them so that they resemble each of the steps of the flow we outlined before. This is done with simple drag and drop.</p>\n\n\n\n<p>If you&#8217;re familiar with software like Photoshop, Sketch, and others, this should feel very familiar.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/DVeU3I9ajqRvMD_e5q6G5vctb4TGbgA9CsIR9xYZ3yPqtmPhbDP9cODTHH4KS-I8GB9R4UF2DV6SSsayKpy45AEDvvY2gLbMsCA0ivfsqGcm509OWeTOpaMuQcv7TFz6-xoiKFfo\" alt=\"\" /></figure>\n\n\n\n<p>Once everything is in place, our flow is complete:</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?ssl=1\"><img loading=\"lazy\" width=\"632\" height=\"97\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=632%2C97&#038;ssl=1\" alt=\"\" class=\"wp-image-10238\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=1024%2C157&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=300%2C46&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=768%2C118&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=1536%2C235&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?w=1999&amp;ssl=1 1999w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></a></figure>\n\n\n\n<p>I still find it incredible that we&#8217;re able to do this in just a few short moments.</p>\n\n\n\n<h3><strong>Hook up the Prototype</strong></h3>\n\n\n\n<p>With each step of our flow created, the last piece of the puzzle is to connect them and form a clickable prototype.</p>\n\n\n\n<p>I switch to the Prototype panel and create click behaviors by selecting a layer, then dragging the white dot to the corresponding frame.</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/i0fLdjWZhRTNFCKvHLLEfUnFx5CIm7p014R1avEV02F_B4DrG1v6Cw-XqYBth9JVYylylM7_mkqcALWEWcUVf0dRhgixJRtmsRIDHyMIZyom2cPdetMAFixgsvsmrqT03Xevync7\" alt=\"\" /></figure>\n\n\n\n<p>There are a variety of behaviors that the Figma prototyping tools support, such as a hover, drag, and click. It is even possible to create smart animations. Perhaps that&#8217;s something we can explore in another tutorial, but for now, I will refer you to the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360040314193-Guide-to-prototyping-in-Figma\">Figma documentation</a> for more advanced prototyping.</p>\n\n\n\n<p>Now that I&#8217;ve connected all the appropriate elements, I am able to take my prototype for a test drive by clicking the Play <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/25b6.png\" alt=\"▶\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> icon:</p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/nBmEr4ohZ8RsjLM5wm4u8UY_zzTE0V1bXj-uoNV79WDibl5bgkZXY64ixl_BgNutg74fvxRZokUtLzWuWVlD46W4tAD_-Dcf-TclgIR9UoO73oCmNxmfcSEmUDgDG0e5WYFJ80tH\" alt=\"\" /></figure>\n\n\n\n<p>You can try it too; just click <a href=\"https://www.figma.com/proto/BmRYWzfrakFwsmIQa24xqx/Pizza-Block?page-id=0%3A1&amp;node-id=48%3A767&amp;viewport=1792%2C385%2C0.46477335691452026&amp;scaling=min-zoom\">here</a>.</p>\n\n\n\n<h2><strong>That&#8217;s All, Folks!</strong></h2>\n\n\n\n<p>I tried to keep this tutorial fairly simple and concise; even though we only really got to grips with the basics here, you can see the power of Figma and the WordPress Design Library when it comes to trying out new designs.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10173\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"Curious About Full Site Editing?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/04/curious-about-full-site-editing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Apr 2021 17:26: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Features\";s: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:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10190\";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:296:\"The second major release of the year is right around the corner. You might have heard a bit of buzz about full site editing around your WordPress circles, so this post will give you some big picture things to know as well as a few wayfinding links for anyone who wants to know more. 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:2792:\"\n<p>The second major release of the year is right around the corner. You might have heard a <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">bit of buzz</a> about full site editing around your WordPress circles, so this post will give you some big picture things to know as well as a few wayfinding links for anyone who wants to know more.</p>\n\n\n\n<p><strong>For Site Owners and Operators</strong></p>\n\n\n\n<p>If you own and operate a WordPress site, updating to version 5.8 should be a seamless experience, just like any other update. All the conversation around full site editing is very exciting, but shouldn’t be alarming—<strong>everything in the next release that relates to full site editing is opt-in</strong>. To experiment freely with it, you need a theme that is built for it. Check the links at the end to see a few examples!</p>\n\n\n\n<p><strong>For Agencies and Theme/Plugin Developers</strong></p>\n\n\n\n<p>If you extend the functionality of the WordPress CMS for clients, updating to version 5.8 should also be seamless. As always, it’s smart to spot-check custom implementations in a staging environment or fully test when the release candidate is made available. Want to test your products and get everything client-ready? Check out any of the testing options below.</p>\n\n\n\n<p><strong>For Contributors and Volunteers</strong></p>\n\n\n\n<p>If you contribute time and expertise to the WordPress project, you can join us in the interesting work leading up to the WordPress 5.8 release and update your site with the deep satisfaction of a job well done. There is a lot that goes into every release—from design and development to documentation and translation; if you’ve got some time to spare, and want to help support the project that supports the tool that supports your site (whew!), check out the links below.</p>\n\n\n\n<h2>Resources</h2>\n\n\n\n<ul><li>A few block themes: <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks</a>, <a href=\"https://wordpress.org/themes/hansen/\">Hansen</a>, <a href=\"https://wordpress.org/themes/block-based-bosco/\">Block-based Bosco</a>, <a href=\"https://wordpress.org/themes/q/\">Q</a></li><li>A few focus areas: <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Gutenberg plugin focuses</a></li><li>A few ways you can test: <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a>, <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Beta testing plugin</a>, <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/#nightly\">Gutenberg Times nightly build</a></li><li>A few pieces of documentation: <a href=\"https://developer.wordpress.org/block-editor/handbook/full-site-editing/\">Full Site Editing Overview</a></li></ul>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10190\";s: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:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"WP Briefing: Your Opinion is Our Opportunity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/04/your-opinion-is-our-opportunity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 26 Apr 2021 15:24: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:1:{i:0;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10171\";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:\"In this episode, Josepha discusses the importance of co-development and testing for the continued growth and maintenance of the WordPress 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:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2021/04/WP-Briefing-007.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"Chloe Bringmann\";s: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:13068:\"\n<p>In this episode, Josepha discusses the importance of co-development and testing for the continued growth and maintenance of the WordPress project.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2008/10/usability-testing-report-25-and-crazyhorse/\">2.5 Usability Testing Report&nbsp;</a></li><li><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a></li><li><a href=\"https://www.meetup.com/Pune-WordPress-Knowledge-Exchange/events/277520243/\">Pune Work Along (Self Study) Meetup</a></li><li><a href=\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-fr/\">French Mini-Translation Day, April 30, 2021</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">April 14, 2021, Full Site Editing Go/No-Go Demo Recap</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Full Site Editing Go/No-Go Next Steps</a></li><li><a href=\"https://make.wordpress.org/test/\">Test WordPress.org</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10171\"></span>\n\n\n\n<p>0:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>0:39</p>\n\n\n\n<p>Prior to Gutenberg, our current multi-year project that is changing the way we see WordPress, another multi-year project changed the way we saw WordPress. Starting in 2008, substantial changes to the WordPress interface came in a series of major releases, starting with WordPress 2.5. That was before my time in the project; I&#8217;ve only ever worked with the current dashboard in WordPress. But, from what I&#8217;ve read, the user testing that would have gone into it was a huge undertaking and very well coordinated. Now, WordPress has not taken on that type of robust testing project since, but starting around 2014 or 2015, a community testing practice was started. I&#8217;ve shared these calls for testing frequently, both on Twitter and in this podcast. But you may not really know why I find the testing program so valuable. So today, I&#8217;m going to explore with you the concept of co-developers in open source.</p>\n\n\n\n<p>1:52</p>\n\n\n\n<p>Open source software, like WordPress, is built by the people who show up. There are a few obvious groups when you think of software, the developers, designers, technical writers, folks who monitor the forums, and really, all the teams you find in our WordPress project. Co-developers or co-creators, if you&#8217;ll join me in making our tent a little bigger, refers to the users of an open source product who actively engage and contribute to the work by using the software and sharing any bugs that they find.</p>\n\n\n\n<p>2:25</p>\n\n\n\n<p>I mentioned this group in the episode about how WordPress improves. Specifically in that episode, I underlined that if you consider users to be part of the collaborative process, as long as people use your product, those people will have opinions about your product’s needs. And today, I&#8217;m extending that thought a bit further to say that, as long as there are opinions, there are opportunities.</p>\n\n\n\n<p>2:51</p>\n\n\n\n<p>When you know what isn&#8217;t working, you can focus your attention on a solution, you can focus on making sure that you can make it work. The existence of co-creators is one of the great things about open source. No designer or developer or product owner has to know every sort of user to be able to get feedback from them. If they show up, test the software and get their thoughts written down, then you can start to see patterns and common pain points. It is also, unfortunately, one of the great difficulties of being an open source project. After all, if users don&#8217;t show up, or don&#8217;t test, or don&#8217;t write down their feedback, it&#8217;s impossible to know what worked for them and what didn&#8217;t. And on top of that, with such a large percentage of the web being supported by WordPress in this case, not every problem is part of a pattern. And not all patterns are part of the current priorities.</p>\n\n\n\n<p>3:54</p>\n\n\n\n<p>Looking beyond that double-edged sword. Let&#8217;s say that this idea of a co-creator makes sense to you. And more than that, you feel like it describes you. What does it mean for you to show up in WordPress? There are lots of good ways to offer this sort of feedback and contribute to those patterns that can help us see through the fog. So I have for you a mini list and, of course, a bunch of links in the show notes for you.&nbsp;</p>\n\n\n\n<p>So some good ways. First, you can participate in any of the dedicated calls for testing. They are short and frequently have a guide. I participate in them and generally find them fun. I say generally because sometimes I also find them frustrating. That&#8217;s really okay too; the frustrations helped me to identify that I found a problem. And if I can find a problem, then I have saved someone else from finding that problem in the future. The second thing you can do is file a bug report with information about what happened when you ran into a problem and how someone like me could make your bug happen on their site. Bug</p>\n\n\n\n<p>5:00</p>\n\n\n\n<p>Reporting is one of the things I&#8217;ve grown to really love in my time and open source; I did not love it. At first, I was really scared to do it. I mostly used to send videos of the bugs that I found to other people and ask them to file the bug reports for me. But then, of course, I never knew whether they got fixed or not. So I was scared to do it at first. But once I figured out what makes a “good report,” I felt like I was helping circle hidden treasure on a map or something. I realized also not everyone&#8217;s excited about finding hidden treasure on a map. But I play video games and finding hidden treasure on maps is, like, a thing.</p>\n\n\n\n<p>5:43</p>\n\n\n\n<p>A third really great way to contribute like this is that you can join any community meeting to learn more about what&#8217;s happening now and in the future, or just to see what makes WordPress work. As a heads up, these meetings go really fast. And they&#8217;re all in text. And there&#8217;s sometimes, but not all the time, a little bit of jargon that you have to head to your favorite search engine to find. But I sit in on about half of them myself and get a lot of really good information about things that I&#8217;ve been wondering about, things that looked broken, but actually are functioning exactly the way that they should. And I just didn&#8217;t want them to function that way. And more often than not, I found out that something that I thought was broken, was already identified and being fixed. Those are three great ways to show up and help give feedback that helps make WordPress better and more functional for more people.&nbsp;</p>\n\n\n\n<p>There are also a few other ways that we see people trying to share that feedback that don&#8217;t work quite as well. And I&#8217;m going to touch on a few of them just because it&#8217;s important to know, as you&#8217;re trying to figure out how to get started with this. The first one is just tweeting your frustrations, and I get it like that&#8217;s literally what Twitter is for.</p>\n\n\n\n<p>7:03</p>\n\n\n\n<p>But also it&#8217;s hard to create a block from “I am frustrated, behold my hateful rhetoric.” Not that any of you, my dear listeners, ever tweet hateful rhetoric. Still, that is really hard for anyone to figure out what was actually wrong in that moment. Another thing that is not the most functional way to give feedback is review brigading. The Internet rewards this kind of behavior, but I have found at least for WordPress, those false positives and false negatives can be really confusing for our new users. And the third way, that&#8217;s not our best way, and probably is the least best way, is just by giving up and not telling anyone what broke for you.</p>\n\n\n\n<p>7:45</p>\n\n\n\n<p>I know that I already said it&#8217;s not possible to fix everyone&#8217;s problems. But while it&#8217;s not possible to fix everyone&#8217;s problems the moment they get shared, it&#8217;s also truly impossible to fix any problems that no one knows exist. And so giving up and not sharing an issue so that we can identify it as part of a pattern of problems is probably the least effective way to help us help you get your problem solved.</p>\n\n\n\n<p>8:13</p>\n\n\n\n<p>This brings me back to the question of the value of WordPress users as co creators in the development process. As WordPress grows, both in usage as a CMS and in participation as a community, it&#8217;s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS. It&#8217;s also important for us to constantly remind ourselves that the best outcomes are the result of collaboration with the people who use WordPress the most. I know that not every type of user we have is showing up to give us feedback about where WordPress doesn&#8217;t work for them. And I would love to see more feedback that helps us to figure out where our patterns are.</p>\n\n\n\n<p>9:03</p>\n\n\n\n<p>So the bottom line is this without user feedback that has some clarity of what was expected versus what happened, the work to make a good choice involves a whole lot of guessing. So since open source software is built by the people who show up, I hope this gives you an idea of how you can show up and help improve the tool that powers your sites.</p>\n\n\n\n<p>9:32</p>\n\n\n\n<p>That brings us to today&#8217;s community highlight every episode or so I share either a great story of WordPress success or a great story of a WordPress contributor who helped some folks along the way. Today&#8217;s <a href=\"https://twitter.com/trishacodes/status/1357382647274762244\">community highlight</a> comes from @trishacodes who shared one of her early to WordPress mentors. She says “@RianRietveld was such an encouragement and helped me find the courage to speak up.” I have had myself many conversations with <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian</a>, and that rings true for me as well.&nbsp;</p>\n\n\n\n<p>10:00</p>\n\n\n\n<p>That brings us to the moment you&#8217;ve all been waiting for, the small list of big things. It&#8217;s actually kind of a medium list. Today, I&#8217;ve got four whole things to share with you all. The first thing on my list is that WordCamp Europe is coming, that will be June 7th through the 10th. It&#8217;s a multi-day online event. I will share in the show notes a link to the main website; there you can get an idea of what will happen, the schedule, and get your hands on some tickets so that you can get it in your calendar and prepare yourselves.&nbsp;</p>\n\n\n\n<p>The second thing I want to share is for all of our polyglots out there. The French team is planning a translation day coming up on April 30. I will share a link to that as well so that you can get an idea of what that takes if you&#8217;re feeling like you want to do some translation work. The third thing I want to share is that the Indian community in Pune actually started a new meetup series. It is a translation work along self-study &#8211; also for all of our polyglots out there. I would love to see as many people as are interested in both learning about how to do translations and certainly translating WordPress get registered for that. A final thing I want to share with you all is that if you are curious about what full site editing features will be included in the 5.8 release, that&#8217;s the WordPress release that&#8217;s coming out in the middle of July, you can check out my recap and recording of the demo that was held with Matt, Matias, and the rest of the team. There’s are also a number of other posts of next step ideas that I will share in the show notes as well.</p>\n\n\n\n<p>11:51</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10171\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Become an Early Adopter With the Gutenberg Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Apr 2021 21:03:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s: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:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10164\";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:372:\"Copy by Anne McCarthy (@annezazu) and Design by Mel Choyce-Dwan (@melchoyce) In WordPress circles (whether it’s your local meetup, a trusted publication, or your networking group), you may have heard terms like Core Editor, Gutenberg, and the Block Editor used interchangeably over the last four years. And if you’re following contributor work on the project [&#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:\"Chloe Bringmann\";s: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:4695:\"\n<p><strong><em>Copy by Anne McCarthy (<a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>) and Design by Mel Choyce-Dwan (<a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>)</em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=632%2C354&#038;ssl=1\" alt=\"\" class=\"wp-image-10165\" width=\"632\" height=\"354\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=1024%2C575&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=768%2C431&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p>In WordPress circles (whether it’s your local meetup, a trusted publication, or your networking group), you may have heard terms like Core Editor, Gutenberg, and the Block Editor used interchangeably over the last four years. And if you’re following contributor work on the project itself, you may also have heard some additional nuances—Gutenberg plugin, Gutenberg, or Block Editor.&nbsp;</p>\n\n\n\n<p>It can get a little confusing, so let’s take a look at four terms that will help you find your way:&nbsp;</p>\n\n\n\n<ul><li>WordPress &#8211; WordPress refers to the open source software but also to the community that surrounds it.&nbsp;</li><li>Gutenberg &#8211; Gutenberg is the code name for a multi-year project to update editing areas for the WordPress software.</li><li>Editor &#8211; The editor refers to a section of the software that allows you to update content on your site’s posts and pages.&nbsp;</li><li>Gutenberg Plugin &#8211; The Gutenberg plugin is where early work to update the editor is shared.</li></ul>\n\n\n\n<h2>The Gutenberg Plugin</h2>\n\n\n\n<p>Now that we’ve cleared up the definitions, let’s talk about the plugin. When might you use it? What would you use it for? You can think of it as an early access program or a “WordPress lab.” The plugin is updated every two weeks, which means that bugs that have been reported are often fixed and that what you see changes rapidly.&nbsp;</p>\n\n\n\n<p>The Gutenberg plugin also contains features that aren’t yet ready for their WordPress debut but are ready for curious users to test and provide feedback. This is a common practice that allows stable features to make it to your site in WordPress releases while allowing experimental features to be tested and refined. To get a sense of whether using the Gutenberg Plugin might be something you want to explore to get access to earlier features, check out the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">“What’s New” release posts </a>and the <a href=\"https://make.wordpress.org/core/tag/core-editor-improvement/\">Core Editor Improvement post series</a>. </p>\n\n\n\n<h2>Do I Need the Plugin to Use Gutenberg?</h2>\n\n\n\n<p>It depends on your comfort level! Generally speaking, it is not recommended to use the plugin on a site that has launched and is actively in use unless you’re very comfortable with the code side of WordPress. Fortunately, each WordPress release comes ready to go with <a href=\"https://developer.wordpress.org/block-editor/handbook/versions-in-wordpress/\">multiple versions of the Gutenberg plugin</a>.&nbsp;</p>\n\n\n\n<p>But if you are a keen beta tester who loves reporting feedback, or you feel comfortable navigating how to opt-in/out of the experimental aspects of the plugin, here are a few reasons you might want to dig into what the Gutenberg Plugin has to offer:</p>\n\n\n\n<ul><li>Test new features and give helpful feedback. For example, you can use the plugin to <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">help test Full Site Editing</a>.&nbsp;</li><li>Get early access to the latest &amp; greatest while navigating when to opt-in or out of experimental features.&nbsp;</li><li>Prepare for the future whether you’re a theme author, plugin developer, agency owner, etc.&nbsp;</li></ul>\n\n\n\n<p><em>Do you use the Gutenberg plugin and </em><a href=\"https://github.com/WordPress/gutenberg/issues\"><em>share feedback on GitHub</em></a><em>? Thank you! This kind of feedback is what helps ensure stability in what’s shipped in WordPress releases.&nbsp;</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10164\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 5.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Apr 2021 03:05: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: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:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10144\";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:365:\"WordPress 5.7.1 is now available! This security and maintenance release features 26 bug fixes in addition to two security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated. WordPress 5.7.1 is a short-cycle security and maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s: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:8461:\"\n<p>WordPress 5.7.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">26 bug fixes</a> in addition to two security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.1 is a short-cycle security and maintenance release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can download WordPress 5.7.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Two security issues affect WordPress versions between 4.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 4.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Thank you <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an XXE vulnerability within the media library affecting PHP 8.</li><li>Thanks <a href=\"https://mikaelkorpela.fi/\">Mikael Korpela</a> for reporting a data exposure vulnerability within the REST API.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> and the WordPress security team for their work on these issues.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-1/\">version 5.7.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.7.1 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.7.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</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/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"10144\";s: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: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:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 13 May 2021 10:14:14 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Thu, 13 May 2021 01:04:30 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:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20201016215008\";}','no'),(1861,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1620944055','no'),(1862,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1620900855','no'),(1863,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1620944056','no');
INSERT INTO `wpgb_options` VALUES (1864,'_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:52:\"WordPress.org blog: WordPress 5.7.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2021/05/wordpress-5-7-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2089:\"<p>WordPress 5.7.2 is now available.</p>\n\n\n\n<p>This security release features one security fix. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.2 is a short-cycle security release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can update to WordPress 5.7.2 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>One security issue affecting WordPress versions between 3.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 3.7 have also been updated to fix the following security issue:</p>\n\n\n\n<ul><li>Object injection in PHPMailer, <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2020-36326\">CVE-2020-36326</a> and <a href=\"https://nvd.nist.gov/vuln/detail/CVE-2018-19296\">CVE-2018-19296</a>.</li></ul>\n\n\n\n<p>Thank you to the members of the WordPress security team for implementing these fixes in WordPress.</p>\n\n\n\n<p>For more information refer to <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-2/\">the version 5.7.2 HelpHub documentation</a> page.</p>\n\n\n\n<h3>Thanks and props!</h3>\n\n\n\n<p>The 5.7.2 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>Thank you to everyone who helped make WordPress 5.7.2 happen: <a href=\"https://profiles.wordpress.org/audrasjb\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans\">@ayeshrajans</a>, <a href=\"https://profiles.wordpress.org/desrosj\">@desrosj</a>, <a href=\"https://profiles.wordpress.org/dd32\">@dd32</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">@peterwilsoncc</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">@SergeyBiryukov</a>, and <a href=\"https://profiles.wordpress.org/xknown\">@xknown</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 May 2021 01:04:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s: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:73:\"WPTavern: Genesis Framework To Become Free, StudioPress Announces Changes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116458\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:189:\"https://wptavern.com/genesis-framework-to-become-free-studiopress-announces-changes?utm_source=rss&utm_medium=rss&utm_campaign=genesis-framework-to-become-free-studiopress-announces-changes\";s: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:4650:\"<p class=\"has-drop-cap\">Yesterday, StudioPress <a href=\"https://studiopress.blog/studiopress-big-changes/\">announced several changes</a> to its themes and marketplace coming on or around June 8. For those outside its community, the company will be making its Genesis Framework available for free. The company is overhauling its marketplace, no longer selling individual themes.</p>\n\n\n\n<p>StudioPress&rsquo;s selection of themes will soon be available only through a Genesis Pro, WP Engine hosting, or Flywheel hosting account. The company&rsquo;s ProPlus customers will gain access to the Genesis Blocks Pro and Genesis Custom Blocks Pro plugins.</p>\n\n\n\n<p>The theme shop has been shifting gears since its <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">acquisition in 2018</a> by WP Engine. While it still caters to freelancers and agencies, its audience has grown to include a more diverse user base. One year ago, WP Engine launched a <a href=\"https://wptavern.com/wp-engine-launches-genesis-pro-add-on-for-customers-more-features-in-the-works\">Genesis Pro Add-On</a>, offering a suite of StudioPress&rsquo;s Genesis products to its customers.</p>\n\n\n\n<p>Chris Garret, the StudioPress Marketing Director at WP Engine, wrote in the article that one of the reasons for these changes was aimed at &ldquo;focusing our product and engineering efforts on preparing the Genesis community for Full Site Editing with the Gutenberg block editor in WordPress Core.&rdquo;</p>\n\n\n\n<p>Last fall, StudioPress launched an open beta of its upcoming <a href=\"https://wptavern.com/genesis-block-theme-beta-studiopress-pursuing-a-block-first-future\">Genesis Block Theme</a>. While there has been little news of it lately, it is expected to land sometime this year alongside WordPress&rsquo;s block-based theming system. In 2020, the company also rebranded an earlier plugin acquisition, Atomic Blocks, to <a href=\"https://wptavern.com/atomic-blocks-rebranded-to-genesis-blocks-migration-path-to-new-plugin-coming-soon\">Genesis Blocks</a>. It later released a developer-centric <a href=\"https://wptavern.com/build-editor-blocks-for-clients-with-the-genesis-custom-blocks-plugin\">Genesis Custom Blocks</a> plugin.</p>\n\n\n\n<p>The company is also retiring all but its top 10 most popular child themes. Retired themes will be archived and still available to existing customers, and the development team will issue security updates if and when necessary.</p>\n\n\n\n<p>&ldquo;As we have discussed in the past, there are big changes coming to WordPress with the introduction of Full Site Editing themes,&rdquo; wrote Garret. &ldquo;While this new way of building themes will be optional (especially at first), we&rsquo;ve decided to focus most of our product and engineering efforts for Genesis related products on preparing to take advantage of these new capabilities.&rdquo;</p>\n\n\n\n<p>Releasing the Genesis theme for free will open a larger audience for StudioPress and ease some friction points.</p>\n\n\n\n<p>&ldquo;This has been one of the biggest asks in all of Genesis and beyond,&rdquo; wrote Garret. &ldquo;Gating Genesis Framework and Sample Theme behind a pay-wall causes confusion for people buying Genesis [child] themes from 3rd party theme providers and limits the number of people who can build with Genesis Framework.&rdquo;</p>\n\n\n\n<p>The team is also dropping its marketplace fees for third-party creators. Vendors, while still being listed, will need to handle payment processing on their own. The &ldquo;buy&rdquo; button on StudioPress will redirect customers to the vendor sites.</p>\n\n\n\n<p>In the past, the Genesis community has been a bit of a walled garden. While there are still commercial plans, these changes can potentially bring in fresh creative talent who might not have chosen to build on top of Genesis in the past &mdash; payments are always barriers to entry for some. Genesis has always been the foundation, but the value non-developer customers will see is in the child themes and plugin add-ons.</p>\n\n\n\n<p>With the <a href=\"https://wptavern.com/upcoming-changes-and-steps-for-an-overhauled-wordpress-theme-review-system\">loosening of the review guidelines</a> in the coming months, I would like to see Genesis land in the free theme directory. It would not pass the current rules, but there may not be any holdups a bit down the road. If it will be free anyway, <em>why not?</em> It would be a gesture of goodwill toward the community while offering a robust and mature product into the directory. From the business end, it is sure to drive more customers to the StudioPress commercial offerings. It could be a win for everyone.</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, 13 May 2021 00:02: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:14:\"Justin Tadlock\";s: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:85:\"WPTavern: ‘Universal’ WordPress Themes Virtual Hallway Hangout Planned for May 14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:203:\"https://wptavern.com/universal-wordpress-themes-virtual-hallway-hangout-planned-for-may-14?utm_source=rss&utm_medium=rss&utm_campaign=universal-wordpress-themes-virtual-hallway-hangout-planned-for-may-14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4769:\"<p class=\"has-drop-cap\">Core contributor Jeff Ong <a href=\"https://make.wordpress.org/themes/2021/05/10/friday-may-14th-at-14utc/\">announced an upcoming virtual hangout</a> around the concept of universal themes. The meeting could cover much ground for theme authors learning how new and upcoming tools will fit into their workflows, businesses, and more. For an invitation, attendees should leave a comment on the announcement post or message Ong directly.</p>\n\n\n\n<p>The hangout is slated for <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20210514T1400\">May 14 at 14:00 UTC</a>.</p>\n\n\n\n<p>The meeting agenda is loose, and the conversation could venture into various theme-related topics. However, the shortlist of possible discussion points covers:</p>\n\n\n\n<ul><li>Using new <a href=\"https://wptavern.com/themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen\">theme tools in WordPress 5.8</a>.</li><li>Handling customization in block and classic themes.</li><li>Using block template parts within PHP templates.</li><li>Supporting block and classic nav menus.</li><li>Working with <code>theme.json</code> for theme styles.</li></ul>\n\n\n\n<p>The first order of business should be to define what a &ldquo;universal&rdquo; theme is. The terminology is new to the WordPress space, and it could change as the future of theming starts taking a more coherent shape.</p>\n\n\n\n<p>Ong left a short description in the announcement. &ldquo;A theme that aims to work in either classic (customizer) or FSE contexts,&rdquo; he called it.</p>\n\n\n\n<p>The definition seems to have been born out of <a href=\"https://github.com/WordPress/gutenberg/issues/29024\">GitHub ticket around &ldquo;hybrid&rdquo; themes</a> &mdash; yet another new term. The goal was to discuss paths for any user to use the site or template editor to override traditional theme templates. For example, if a user wanted to create a block-based category archive template, they could do so without affecting their overall theme structure.</p>\n\n\n\n<p>WordPress users will get a sampling of <a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">this idea in version 5.8</a>. The post-editing screen has a new <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">template-editing mode</a>. Users will be able to switch to this mode to create a top-level template for that single post/page. It will live outside their theme structure, so it won&rsquo;t matter if the theme supports blocks.</p>\n\n\n\n<p>The Gutenberg development team and theme authors will be grappling with such questions in the coming months. Nothing is ever a perfect process. And, the transition to block-based theme templates is an overhaul unlike any we have seen in WordPress&rsquo;s history. So, we need new paths and terms for them.</p>\n\n\n\n<p>&ldquo;I&rsquo;ve been thinking about the notion of universal themes rather than hybrid,&rdquo; <a href=\"https://github.com/WordPress/gutenberg/issues/29024#issuecomment-792796711\">wrote Mat&iacute;as Ventura</a>, the Gutenberg project lead, in the ticket. &ldquo;Universal themes would be themes that can be loaded in a classic context or block editor context without a problem. As a user, if I&rsquo;m running a WordPress capable of understanding block themes, that&rsquo;s the interface I get (and the one I can customize), otherwise, the regular theme files are used with its customizer integration. Hybrid would then be a tool for theme developers to gradually become universal themes if they want to.&rdquo;</p>\n\n\n\n<p>Hybrid themes seem to be designed to work with bits and pieces of FSE, giving developers time to move toward full support. However, universal themes cover everything from the traditional to the new era. They are meant to allow users to choose which bits of FSE to use.</p>\n\n\n\n<p>All this new terminology could muddy the waters a bit, and if that happens, users are the ones to lose out. There will potentially be four types of themes:</p>\n\n\n\n<ul><li>Block Only</li><li>Universal</li><li>Hybrid (with varying levels of support)</li><li>Classic Only</li></ul>\n\n\n\n<p>Most themes that have landed in the official directory over the past few months lack basic block-editor styles. It is hard to imagine too many universal themes &mdash; which will require far more of a time investment &mdash; in the next year or so. It is more likely that we will see a split between new block themes and a mashup of classic/hybrid themes making the rounds. Only the most dedicated or those who can foot the bill will go the universal route.</p>\n\n\n\n<p>For now, developers need to continue having these types of conversations and ironing out the details.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 May 2021 23:26: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:14:\"Justin Tadlock\";s: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:36:\"WPTavern: Liquid Web Acquires GiveWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"https://wptavern.com/liquid-web-acquires-givewp?utm_source=rss&utm_medium=rss&utm_campaign=liquid-web-acquires-givewp\";s: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:3716:\"<p><a href=\"https://wordpress.org/plugins/give/\">GiveWP</a>, one of the most popular donation and fundraising plugins with more than 100,000 active installs, has been acquired by <a href=\"https://www.liquidweb.com/\">Liquid Web</a>. The team behind the plugin will be joining Liquid Web as part of the asset sale, which includes the whole company, products, and leadership.</p>\n\n\n\n<p>GiveWP made its <a href=\"https://wptavern.com/give-a-new-free-donations-plugin-for-wordpress\">debut in 2015</a> with a 0% commission approach, its major differentiator from other third-party funding tools at the time. Sites using the plugin can collect 100% of the donations given. Its creators aimed to empower causes and non-profits to host their own donation forms. They built out the plugin to become a full donation platform with reporting and donor management. </p>\n\n\n\n<p>As of May 2021, GiveWP has helped its users raise more than $1 billion dollars in online fundraising.</p>\n\n\n\n<p>&ldquo;When we launched, we talked about forms with no reporting, or having to hack eCommerce tools to skip the cart and sales tax and shipping,&rdquo; GiveWP co-founder and former COO Matt Cromwell said. &ldquo;When users started basically saying exactly that back to us as the reasons they LOVED GiveWP, it was major validation &ndash; we&rsquo;d built exactly what we wished we&rsquo;d had when we were freelancing for nonprofits.&rdquo;</p>\n\n\n\n<p>The founders also found validation in their business ideas when large organizations like the Clinton Foundation or Habitat for Humanity reached out to GiveWP support and gave positive reports after receiving answers.</p>\n\n\n\n<p>&ldquo;It made us really amazed how we can bring solutions to organizations that are solving BIG world problems,&rdquo; Cromwell said. &ldquo;When we started having better telemetry and realized that we were literally helping organizations raise billions of dollars now&hellip;that was huge. It&rsquo;s been very humbling to be part of something so much bigger than any one person in our organization.&rdquo;</p>\n\n\n\n<p>Cromwell said his team was not actively &ldquo;shopping&rdquo; the company, but were looking for ways to accelerate growth of the team and product.</p>\n\n\n\n<p>&ldquo;GiveWP sales have been increasing annually year over year every year since our launch,&rdquo; he said. &ldquo;We were not looking for ways to save this product; it&rsquo;s been wildly successful.&rdquo;</p>\n\n\n\n<p>Devin Walker, GiveWP former-CEO and co-founder, said he appreciated Liquid Web&rsquo;s history of acquiring strong WordPress brands while keeping their teams in place. He referenced the company&rsquo;s 2017 acquisition of iThemes, and The Events Calendar acquisition in 2020.</p>\n\n\n\n<p>&ldquo;These two success stories gave us great confidence in Liquid Web and their desire to see GiveWP grow,&rdquo; Walker said.</p>\n\n\n\n<p>&ldquo;Liquid Web is building a whole software part of their business, they&rsquo;ve been acquiring WordPress shops for quite some time and they saw us as a good addition to their &lsquo;Family of Brands,\'&rdquo; Cromwell commented on the sale. &ldquo;They are also leaders in the managed WordPress space, and we&rsquo;re already talking with them about opportunities for a more specifically nonprofit focused managed WordPress solution that includes GiveWP and all our addons.&rdquo;</p>\n\n\n\n<p>Cromwell said his team does not anticipate any branding or pricing changes in the future. Current users and customers who have questions or concerns are invited to attend the company&rsquo;s <a href=\"https://givewp.com/givewp-joins-liquidweb/#register\">virtual Town Hall meeting</a> with Liquid Web CTO Joe Osterling on May 18, at 11am Pacific.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 May 2021 17:41: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: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:40:\"WordPress.org blog: Welcome to Openverse\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/05/welcome-to-openverse/\";s: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:2211:\"<p>Following the <a href=\"https://ma.tt/2021/04/cc-search-to-join-wordpress-org/\">recent statement by WordPress&#8217;s co-founder Matt Mullenweg</a> and the <a href=\"https://creativecommons.org/2021/05/03/cc-search-to-join-wordpress/\">Creative Commons CEO, Catherine Stihler’s post</a>, I&#8217;m happy to formally announce that CC Search (with the new name Openverse) is now part of the WordPress open source project. Both Matt and I are long-time supporters of Creative Commons. I hope that this will provide a long-term, sustainable challenger to closed source photo libraries and further enhance the WordPress ecosystem.</p>\n\n\n\n<h3><strong>How Does This Affect Current Users?</strong></h3>\n\n\n\n<p>Current CC Search users will continue searching and using openly licensed images from around the internet. WordPress plans to continue the great work started by the Creative Commons project and expand search capabilities and features.</p>\n\n\n\n<h3><strong>What’s Next?</strong></h3>\n\n\n\n<p>We look forward to indexing and searching additional media, such as audio and video. As we expand our capabilities and grow the project, we look forward to integrating directly into WordPress and the media library. We hope to not only allow search and embeds of openly licensed media but pay it forward by additionally licensing and sharing your media back.</p>\n\n\n\n<h3><strong>How Can You Contribute?&nbsp;</strong></h3>\n\n\n\n<p>Stop by the Slack channel, <a href=\"https://wordpress.slack.com/archives/C02012JB00N\">#openverse</a>, and take a look at the code repositories moved under the WordPress organization <a href=\"https://github.com/wordpress/?q=openverse\">here on GitHub</a>. You can also follow along with the project on its own make page at: <a href=\"https://make.wordpress.org/openverse\">https://make.wordpress.org/openverse</a>. We are working on setting up the new team, process, and procedures.<br /></p>\n\n\n\n<p>Join us in welcoming the team and community. As a treat, check out the most recent WP Briefing episode, <a href=\"https://wordpress.org/news/2021/05/the-commons-of-images/\">The Commons of Images</a>, in which Matt and I discuss CC Search and our hopes for it as part of the WordPress community.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 May 2021 12:42:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:\"\";}}}}}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:71:\"WPTavern: Openverse: Why This Project Is Good for WordPress and the Web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115744\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/openverse-why-this-project-is-good-for-wordpress-and-the-web?utm_source=rss&utm_medium=rss&utm_campaign=openverse-why-this-project-is-good-for-wordpress-and-the-web\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6602:\"<p class=\"has-drop-cap\">In today&rsquo;s WP Briefing podcast episode, <a href=\"https://wordpress.org/news/2021/05/the-commons-of-images/\">The Commons of Images</a>, host Josepha Haden Chomphosy discussed the Openverse project with WordPress lead Matt Mullenweg. Automattic recently paid the non-profit Creative Commons organization for their Creative Commons Search engine. However, <a href=\"https://wptavern.com/creative-commons-search-to-relaunch-on-wordpress-org\">WordPress.org will host it</a>, and there will be a community-run team. Openverse will be the name of the new project when it launches.</p>\n\n\n\n<p>A more official announcement of the Openverse project and team is expected shortly. However, it is an ideal time to begin exploring what this means for WordPress and the web.</p>\n\n\n\n<p>Over the past few years, theme authors have watched as their favored image services offered problematic license and terms changes. The domino effect of services not wanting competitors to build upon their collections of open-source media shifted the landscape. <a href=\"https://make.wordpress.org/themes/2018/11/29/pexels-images-are-no-more-allowed/\">Pexels</a>, <a href=\"https://make.wordpress.org/themes/2019/01/13/pixabay-images-are-not-allowed/\">Pixabay</a>, <a href=\"https://wptavern.com/unsplash-responds-to-image-licensing-concerns-clarifies-reasons-for-hotlinking-and-tracking\">Unsplash</a>, and others began adding limitations to how their images could be used. Such limitations meant images from those services were not allowed in WordPress.org themes.</p>\n\n\n\n<p>For theme creators, this meant the pool of potential open-source images became smaller in a time when it should have been growing.</p>\n\n\n\n<p>&ldquo;What happens today is there&rsquo;s stock photography sites, some of which used to be Creative Commons-based, but many have moved away from that,&rdquo; said Mullenweg. &ldquo;So they essentially relicense their user contributions.&rdquo;</p>\n\n\n\n<p>It is not just an issue for creators on the theme directory. The burning question of where to find free images without fuzzy license agreements crosses the spectrum of the WordPress community. Even users should feel safe dropping a decorative or featured image into their post without digging through the legalese.</p>\n\n\n\n<img />Creative Commons Search for beach photos.\n\n\n\n<p>The web is full of content under Creative Commons licenses. However, it is often tough to find them. Mullenweg said that image, audio, and video files are each &ldquo;a little bit of an island&rdquo; in his description of the problem. That discoverability issue is part of what the Openverse project intends to solve.</p>\n\n\n\n<p>Sites that have changed their terms or licenses did so after becoming players in the stock photo space. However, their growth was on the back of the open-source world. They should have expected some backlash. And, WordPress is the ideal type of community to make a truly free alternative.</p>\n\n\n\n<h2>Potentially Revolutionary</h2>\n\n\n\n<p class=\"has-drop-cap\">The Openverse project can be a game-changer in two regards. The first is the direct integration into the WordPress media library. The second is it provides another avenue for people, even those who are not developers or designers, to contribute to the open content of the web.</p>\n\n\n\n<p>The platform&rsquo;s built-in media library is due for an overhaul. Uploading and adding images to a post is a relatively simple affair &mdash; if you have them on hand. Going to a stock photo site and choosing an image is often the course of action when users need to find the perfect photo to plug into a post. However, this takes users outside of the WordPress experience, creating a blockage in the content-creation flow.</p>\n\n\n\n<p>The plan for Openverse is to integrate its search feature directly into the media library. This puts millions of media files into the hands of creators without ever leaving WordPress.</p>\n\n\n\n<p>Some plugins already do this for various stock photo sites. Automattic&rsquo;s Jetpack offers access to the Pexels collection.</p>\n\n\n\n<img />Pexels image search via Jetpack.\n\n\n\n<p>Pexels has its own license similar to Pixababy and Unsplash. However, it does distinguish between CC0 (public domain) and the Pexels License on a photo-by-photo basis. Unfortunately, that license info is not shown via the Jetpack integration. I hope the eventual integration of Openverse and WordPress is more robust, offering a clear view of what users are getting when they find an image they like.</p>\n\n\n\n<p>There are still some things to copy from Jetpack&rsquo;s Pexels integration. Automatic photo credits and alt text are welcome features that generally make the web a better experience. Adding the credit to the image caption is a nice nod to the creator, and the oft-forgotten alt text is necessary for users with screen readers.</p>\n\n\n\n<img />Inserting image with photo credits and alt text from Pexels.\n\n\n\n<p>One of the biggest takeaways from the podcast is what Openverse can be for the web. &ldquo;We&rsquo;re going to try to bring the WordPress philosophy to this space,&rdquo; said Mullenweg.</p>\n\n\n\n<p>He acknowledged that there is and should always be a market for professional media creators. There are sites aplenty for people who want to offer commercial access to their images and more.</p>\n\n\n\n<p>&ldquo;But we just want to make an alternative, so those who want to donate their work to the world, much like engineers, and designers, and translators of WordPress, donate their work some of that effort to the world, they can do so,&rdquo; he said.</p>\n\n\n\n<p>Openverse must become more than a media search engine. It needs to be a project where the Average Joe can upload a nice nature picture he took over the weekend barbecue. A place where Average Jane can share a video clip of the ocean waves hitting the shoreline from her beach trip. And a place where professionals can pay it forward to the world.</p>\n\n\n\n<p>My excitement is mostly about having a trusted place for theme authors and designers to grab free media. I am already imagining what this could mean for the upcoming block pattern directory, a place that will need quality images without restrictions.</p>\n\n\n\n<p>The project is 100% <a href=\"https://github.com/WordPress?q=openverse\">open source too</a>. Developers can fork the search engine and create their own. Competing content management solutions will also have access to the public API, offering open-source media to their users.</p>\n\n\n\n<p>Bringing the WordPress philosophy into the stock media space is a plan I can get behind.</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, 10 May 2021 23:43: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:14:\"Justin Tadlock\";s: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:52:\"WordPress.org blog: People of WordPress: Fike Komala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10270\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/05/people-of-wordpress-fike-komala/\";s: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:10375:\"<p><em>WordPress is open source software, maintained by a global network of contributors. There are many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of the amazing stories that are not as well known.</em><br /><br />Creating content with WordPress and blogging helped Fike Komala, from Indonesia, build a career where she can work remotely from different locations in the world. <br /></p>\n\n\n\n<p>In 2020, Fike joined a US-based company that specializes in form building to work as a content marketer. Using her experience as a freelancer and later a full time employee, she encourages others, particularly women in Asia, to consider remote work as a career option. She is so impressed by remote working benefits, that she is now considering writing about it for a thesis for her Master&#8217;s Degree, which she started this year in Europe.<br /></p>\n\n\n\n<img width=\"632\" height=\"387\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/05/B5939AF2-DFFD-4471-B3F1-7738F82CEF8A.png?resize=632%2C387&ssl=1\" alt=\"Fike pictured with a snow background\" class=\"wp-image-10291\" />\n\n\n\n<p>As a keen blogger, WordPress immediately impressed Fike. Her dad is a programmer, and he helped her create the first of many blogs starting when she was 10 years old. She had private and public blogs, and even an English language one to help her practice and improve her skills. </p>\n\n\n\n<blockquote><p><strong>“I got satisfaction and happiness from pouring my thoughts in writing and publishing them in my blog. Writing my thoughts and feelings often helped me process them, and does even now.”</strong></p><cite>Fike Komala</cite></blockquote>\n\n\n\n<p>With a natural talent and love for languages, Fike pursued an Information Systems degree after graduating from high school. Her course covered business learning Java, HTML, CSS, Javascript, and Android programming. She also took courses to learn Bootstrap and Ruby on Rails.&nbsp;</p>\n\n\n\n<h2>Earning Through Building With WordPress</h2>\n\n\n\n<p>Fike’s parents had a business building websites. She was drawn to this work and would help proofread and format the articles. This is how she first encountered WordPress, which was to play a pivotal role in her future career. <br /></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>“I saw WordPress as something more advanced than other platforms, with more themes and plugins to choose from. The default WordPress websites already looked more professional than others.”</p><cite>Fike Komala</cite></blockquote>\n\n\n\n<p>Throughout school, Fike’s experience with WordPress and blogging helped her earn extra money safely online, including translating texts from English to Indonesia, online surveys, and writing articles in English.</p>\n\n\n\n<h2>Discovering Work You Enjoy&nbsp;</h2>\n\n\n\n<p>The last year at University required a year-long full-time internship. Fike worked as an intern at a big general insurance company within the IT quality control staff. She enjoyed working with the people she met and learned a lot through this opportunity, but she declined the offer of a full-time position.&nbsp;</p>\n\n\n\n<p>Fike is a good student who loves learning and did well in her education. Through her traditional internship experience,  she found that programming in an office job did not fulfill her. It strengthened her belief in a finding a career where she could have the freedom and creativity of working remotely.</p>\n\n\n\n<p>“I was a good student, I love learning algorithms, but I didn’t love programming. I’m not that person who can stay calm finding errors in their codes, and then finding out that it’s only missing a character,” said Fike. She added: “I don’t really like the fact that I have to wake up at 6 AM and be back home at 7 PM, and do it all over again the next day.”</p>\n\n\n\n<h2>Adventure Into Remote Work&nbsp;</h2>\n\n\n\n<p>Fike spent time improving her freelance profile, revising it, and applying to jobs as a virtual assistant. She was willing to do any small website jobs such as formatting WordPress posts, designing social media posts, and processing orders for online shops. Through a freelance job submission site, she was able to work with people from across the globe, including Singapore, Australia, Europe, and America. Through the site, Fike was able to gain experience with remote working tools like Slack, Asana, Trello, and Google Suites, and the work gave her practice writing in English.&nbsp;</p>\n\n\n\n<p>It was through this site that Fike saw a job opportunity with a WordPress plugin company. She sent in her profile and blog.&nbsp;</p>\n\n\n\n<p>“This was my first time being interviewed via a video call. I was ecstatic but panicked. On the day, I woke up at 4 AM, got dressed, and opened my laptop. Weirdly, my wi-fi died that morning. So I went to the nearest cafe to get the interview done, and it went great!”</p>\n\n\n\n<p>She was hired to deliver consistency on the company’s blog.&nbsp;</p>\n\n\n\n<p>Through her job, Fike first began to contribute within the WordPress community and was able to attend her first WordCamp, WordCamp Jakarta 2018, sponsored by her firm. Through WordPress, Fike has met many generous, trusting, and helpful people. </p>\n\n\n\n<p>She said: “Because I’ve experienced the generosity of the WordPress people, I wanted to give back to the community.”</p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/ZDAmqCcebOQII99V2RMYmJikoQ3u-tjy6BcCT39QWsOUrAqq2_HeqJ1735UoxVyQHTO_S_V9lzZEJ7WayLb8kY3or78oqG4Xt5ujbNUpt7Vcz7r20lp9XopkPwh85imnvRxjpWTx\" alt=\"WordCamp swag\" />Swag from WordCamp Jakarta 2018, that’s Wapuu ondel-ondel!\n\n\n\n<blockquote><p><strong>“I got to know the amazing community behind WordPress. How people voluntarily contribute their time, energy, and skills to the community, from development, marketing to translating.</strong> <strong>It was really inspiring.”</strong></p><cite>Fike Komala</cite></blockquote>\n\n\n\n<h2>You Can Inspire Others Through Contributing</h2>\n\n\n\n<p>Fike has been an inspiration to people in her local community and globally within the WordPress community through her enthusiasm and energy.&nbsp;</p>\n\n\n\n<p>She <a href=\"https://www.youtube.com/watch?v=KHSAV_NJtTA\">talks about her joy in contributing</a> during a live interview as part of WordPress Translation Day in 2020.&nbsp;</p>\n\n\n\n<p>So determined to encourage others to become translators of WordPress, she joined the Global Translation Day event with the Indonesian Community last year and took part in wider marketing of the event. She is pictured below with some of the Indonesian polyglots team.</p>\n\n\n\n<p>She continues to support the polyglots and is a General Translation Editor for the Indonesian language. Last year, she also voiced an <a href=\"https://youtu.be/Ifqabp-36_c\">Indonesian translation of the onboarding video</a> for new contributors joining WordPress.org. She has been a regular contributor to the PerempuanWP, an initiative for Indonesian women working in the WordPress world. Working with a firm which uses the WordPress platform has strengthened her familiarity with projects in the community and encourages her interest in contributing.</p>\n\n\n\n<img src=\"https://lh4.googleusercontent.com/H-8VelQbbEb9f5MM-SUXNudVD9U1DNs546yt_cWGRU--GSLm-PCUunnHDNFmquv9w3rWOUadxkbYr9bYsRU1Ecmhb6Ee_Deg_paNEIyyqs91_3DjgtlmfgCA_P45GNA5nf5rmpCe\" alt=\"Indonesian translation team \" />\n\n\n\n<p>To learn more about contributing to WordPress, visit <a href=\"https://make.wordpress.org/\">make.wordpress.org/</a> and follow the “get involved” link. You can join any of the weekly team meetings to get started, and there is a lot of help available.&nbsp;</p>\n\n\n\n<p>Fike says, “I want to represent Asian women. In the future, I hope I can inspire more women, especially Asians, to work remotely.” She is now studying in Europe for a Master&#8217;s in Digital Communication Leadership. She hopes to use her learning to help other women, particularly back in her home country of Indonesia.</p>\n\n\n\n<p>She continues to share her energy for learning and remote working. </p>\n\n\n\n<p>“<strong>Just learn things. As much as you can. From anywhere, about anything. Keep an open mind. Read books, listen to podcasts, and learn new skills.”</strong></p>\n\n\n\n<p><strong>She added: “If you’re working in the WordPress world, join the WordPress community. It’s a great place to learn from and connect with great people.”</strong></p>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>) and Meg Phillips (<a href=\"https://profiles.wordpress.org/megphillips91/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>megphillips91</a>) for writing this feature, to Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sthakor</a>), Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>), Larissa Murillo (<a href=\"https://profiles.wordpress.org/lmurillom/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>lmurillom</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Chloé Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>) for additional support and graphics, and to Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) who created HeroPress. Thank you to Fike Komala (<a href=\"https://profiles.wordpress.org/fikekomala/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>fikekomala</a>) for sharing her #ContributorStory.</p>\n\n\n\n<img src=\"https://lh4.googleusercontent.com/FEZ2FQJ0vQ311YoPfh6ny15NXh8saTLH_RjyDO4pUOuEGBTa-Czk63PGoWL04FawKviRfNx0QXePx-goK04X12ry1BR_WXh-kVPIfsEeItPAX6reN5fHS96q6-8dUI506ZO38Z0G\" alt=\"HeroPress logo\" />\n\n\n\n<p><em>This post is based on an article originally published on HeroPress.com. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members in our <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress series</a>.</em></p>\n\n\n\n<p><em>#ContributorStory #HeroPress #WPTranslationDay</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 May 2021 22:50:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"webcommsat AbhaNonStopNewsUK\";s: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:54:\"WordPress.org blog: WP Briefing: The Commons of Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10266\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/news/2021/05/the-commons-of-images/\";s: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:24989:\"<p>In this episode, Josepha is joined by the co-founder and project lead of WordPress, Matt Mullenweg. Tune in to hear Matt and Josepha discuss the relaunch of CC Search (Openverse) in WordPress and the facets of the open source ecosystem.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2>Credits</h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<p><strong>Openverse Repositories </strong></p>\n\n\n\n<ul><li>Catalog:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/wordpress/openverse-catalog\">https://github.com/wordpress/openverse-catalog</a></li><li>API:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/wordpress/openverse-api\">https://github.com/wordpress/openverse-api</a></li><li>Frontend:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://github.com/wordpress/openverse-frontend\">https://github.com/wordpress/openverse-frontend</a></li></ul>\n\n\n\n<p><strong>Tech Stack Outline</strong></p>\n\n\n\n<ul><li><strong>Frontend</strong>&#8211; Languages: <ul><li>JavaScript, CSS/SCSS</li><li>Libraries/Services: Vue.js, Nuxt.js#&nbsp;</li></ul></li><li><strong>API</strong>&#8211; Languages: <ul><li>Python, PostgreSQL</li><li>Libraries/Services: Django, Elasticsearch, Redis</li></ul></li><li><strong>Catalogue</strong>&#8211; Languages: <ul><li>Python, PostgreSQL</li><li>Libraries/Services: Apache Airflow, PySpark</li></ul></li></ul>\n\n\n\n<p>Join the WordPress Slack instance, #openverse</p>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10266\"></span>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress Briefing. This is usually the podcast where you can catch quick explanations of some of the ideas is behind the WordPress open source project. Today, I have a little bit of a different topic. It&#8217;s still WordPress, it&#8217;s still open source, but it&#8217;s kind of peering into some stuff for the future as opposed to looking at where we are today or how we got to where we are today.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>00:36</p>\n\n\n\n<p>You might have recently seen an announcement from Matt that CC Search is joining the WordPress project. This is a really exciting thing for open source, for sure, and definitely, from my perspective, for WordPress. And so I invited Matt to join me today to take a look at what he had in mind with bringing that particular project into our project and what we have in mind for the future. And so, today, this is the WordPress Briefing with Matt and Josepha. And I hope you enjoy the conversation we had. Here we go!</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>01:22</p>\n\n\n\n<p>So, we recently announced for WordPress that we essentially acquired CC Search, a project that&#8217;s been part of Creative Commons. And they recently chose a different kind of roadmap for the work they&#8217;re doing in the future. And so it seemed like a really great opportunity to bring this tool and this, I don&#8217;t know, this kind of experience for our users into the WordPress project. So Matt, what are your thoughts about how, like this commitment to images with CC licenses, with Creative Commons licenses, can impact WordPress and how we work in the open web.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>02:09</p>\n\n\n\n<p>I think it&#8217;s pretty exciting because Creative Commons exists to do for media, you know, images, audio, etc., what open source has done for code. And so for people who choose to want to donate their creative work under these licenses, much like anyone who contributes a plugin, or code or documentation or translations for WordPress, now people for whom their method of expression is, let&#8217;s say, photography, can put that into the comments like literally, I like why it&#8217;s called the Creative Commons, it&#8217;s such a good name. It can be accessed within everyone&#8217;s dashboard for WordPress. And those images can start to really be part of the fabric of the web the same way that code that runs WordPress or its plugins is part of the fabric of the web.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>02:57</p>\n\n\n\n<p>For anyone who&#8217;s listening who&#8217;s not actually already familiar with this concept of the tragedy of the commons, do you want to give us the elevator pitch of what that means and why it&#8217;s so important for WordPress to try to counterbalance that in our work?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>03:12</p>\n\n\n\n<p>Sure, the tragedy of the commons, you know, I think the canonical example is as a shared field in a town, and it doesn&#8217;t belong to anyone, so anyone can use it. And when too many farmers took their sheep there, they would overeat the grass, and then there was no more grass left because it was being overutilized, and there was no one owning the field to say, Hey, we need to practice a more sustainable amount of sheep. grass in</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>03:39</p>\n\n\n\n<p>Put more grass in there.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>03:41</p>\n\n\n\n<p>So basically, the idea is like a shared resource that gets overused and then disappears. With software, we have the opportunity to have the opposite, which is a wealth of comments where every person using the thing actually has the opportunity to make it a little bit better. And that is really beauty of like Wikipedia, open source where every person using it might contribute a small fix, or a translation or a bug report or tell a friend about it, or basically be part of making this thing better, which you know, WordPress is history is very much an example of, and then as it gets better, more people want to use it. And the beautiful thing about software is you can have economics of abundance versus the economics of scarcity. There&#8217;s not one field used, but every additional incremental user of WordPress makes this community stronger and creates a larger market for the products inside it. So those types of dynamics can have the opposite of the tragedy of the commons.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>04:39</p>\n\n\n\n<p>Absolutely. I love this idea that you brought it up in your question, not your question, in your answer right at the top. I love this idea of acknowledging that code isn&#8217;t the only fabric available in open source and certainly not the only fabric of the internet as we know it. This idea of like, let&#8217;s bring Creative Commons licensed images into a more long-term space for WordPress. Do you think that that at some point can apply to videos and other sorts of audio files?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>05:21</p>\n\n\n\n<p>Absolutely. There already is a ton of Creative Commons licensed content out there that people can use. But there&#8217;s a discoverability problem, you know? Each individual image or audio file or video is, is a little bit of an island. So that&#8217;s why it&#8217;s so important that there&#8217;s the equivalent of a search engine that allows people to discover all the great stuff that&#8217;s out there. And what happens today is there&#8217;s stock photography sites, some of which used to be Creative Commons-based, but many have moved away from that. So they essentially relicense their user contributions. Or people, if we&#8217;re being real, people just go to Google images, and they might utilize images that they don&#8217;t actually have rights to. It&#8217;s not the end of the world, but it&#8217;s not ideal. And so we can create this really compelling directory experience of imagery, which people have chosen to share and want to be used. I think that&#8217;s a much better outcome than the equivalent of piracy.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>06:21</p>\n\n\n\n<p>Yeah, yeah, absolutely. So I leapt right into this and didn&#8217;t really give any context to what CC Search is or anything, but for anyone who is not familiar with this tool already, CC Search is, as Matt mentioned, a search engine that currently is focused specifically on images that use open licenses. The Creative Commons licenses are like the content-specific version of GPL for code, which is a really big deal, I think. If wishes were fishes, Matt, and you had your total hope ahead of you, what is your hope for the relaunch of this product and this tool in WordPress?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>07:15</p>\n\n\n\n<p>Well, first and foremost, I think we can improve the experience of designing and contributing themes and then modifying them with this really fantastic image directory if we&#8217;re able to build it in the media library. And lots of plugins like Jetpack do some version of this. I think that Jetpack uses Pexels or one of the proprietary, but open libraries. And so we can make it fully, like you said, the equivalent of GPL and open source, all the better. I think longer-term, I&#8217;d love to have a way for people who are adding media to the WordPress site to set it to be available under a Creative Commons license. So just to make it easy and built-in for people to create more Creative Commons license imagery. And then, you know, with the integration of Gutenberg and other things, we can make it easy for other people to use it and credit back the original author if they choose to. And what we find is that even though with CC0, which is essentially a kind of like putting something into the public domain, credit is not required. If you make it the default to link back to the original photographer, author, most people believe that because they like creating things that they use. So you get the best of both worlds; you have the freedom of use for any purpose, including not requiring the credit. But then, just by having it by default, when you insert one of these images, a lot of people are going to leave that and link back to the original author, which I think is also really cool. Like you&#8217;re not required to have a credit link on WordPress, but most people leave the Powered BY WordPress on there.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>08:45</p>\n\n\n\n<p>One of the interesting areas, you mentioned Pexels in this case. One of those interesting areas that we, as a project, can really explore here is how to make it so that the metadata gives you confidence in the origin of the image. Like I don&#8217;t believe that there are any set standards for that. I&#8217;ve just started my research, obviously, because they&#8217;re brand new to us, but I just don&#8217;t think there are any standards available there. And, I think that there is an opportunity for WordPress as a true supporter of the open web to help change the fact that we don&#8217;t have that’s one of the main competitive disadvantages that open source libraries have been trying to combat and especially with Unsplash, who eventually did get purchased by Getty Images. Still, I feel like part of what must have driven that decision to change the licensing terms had to be that they are up against that behemoth of Getty Images where people know where the things came from. They know where the images came from, and they can trust that lineage and model releases and all that stuff. I&#8217;m just really interested to see how we can; I don&#8217;t know; I hate to say dignify contributors who are offering their contributions to open source in this way. But, it also is kind of that there&#8217;s no sense in saying that just because you did not accept payment from getting images, your photos weren&#8217;t any good, or your images did not have an excellent path to where they are housed at that moment.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>10:39</p>\n\n\n\n<p>I mean, it&#8217;s really fun to contribute to something larger than yourself. And for many folks, you know, their gift, their craft is something like photography. And so there&#8217;s always going to be the sort of paid marketplaces and, and something like Shutterstock, I think really fantastic companies and services. I think a marketplace for paid content. But we just want to make an alternative, so those who want to donate their work to the world, much like engineers, and designers, and translators of WordPress, donate their work some of that effort to the world, they can do so. Right now, there are some places for that, but we&#8217;re going to try to create one that is fully open, has no advertising, has an open API. So other CMSs can access it too.&nbsp; You know, we&#8217;re going to try to bring the WordPress philosophy to this space.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>11:29</p>\n\n\n\n<p>Gosh, I just love that. While we&#8217;re on the question of contributing to something bigger than yourself, bringing the WordPress philosophy into this space, how do you think CC Search will impact the current media library and how WordPress handles media in general? Or do you have an idea about how it will impact that? Sometimes we don&#8217;t know until we get in?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>11:53</p>\n\n\n\n<p>Yeah, I think within Gutenberg, the idea of adding an image from an online library or a search is something we&#8217;ve wanted to do for a while. But either the licensing made it a little tricky, or, you know, some of the sites that did have open things, maybe the site itself had like a lot of advertising or pop-ups or things like that. So by having this hosted by wordpress.org, we&#8217;ll have a clean, open source, and ad-free place that people can access. I suppose it&#8217;s also worth saying that CC Search, which we&#8217;re rebranding as Openverse, is actually all the code behind is open source as well. So there is going to be a new project on WordPress&#8217;s GitHub that will be this open source search engine. So that&#8217;s also part of the contributions; we&#8217;ll be pointing this search engine to try to index and collect Creative Commons license media, but perhaps it could also provide a base for someone else wanting to build a different characters engine or just host Openverse themselves and run it themselves; that is totally fine.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>13:00</p>\n\n\n\n<p>I should probably mention, for any of the WP Briefing listeners who are contributing to the WordPress project itself, there is a brand new team that we&#8217;re working on building, and for one wander over and welcome everybody, we are welcoming in an open source community into our open source community. And so, of course, we want to make sure that they know how to get around and feel welcome in the space. But also, anything that you are interested in helping to contribute to that particular project, I think would be helpful. WordPress is big; we have a long history. And so I think I feel confident in saying that, if I were on that team that&#8217;s bringing in this new tool, I would hope that there were some OG WordPressers, who were available to help me discover the ins and outs of things, especially as its 18 years of us.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>14:04</p>\n\n\n\n<p>Yeah, it&#8217;s also a new technology stack. So let&#8217;s say you want to be involved in WordPress, but your expertise is more on the Python side, or Elastic Search or something like that. We now have a project where people who are into that or want to learn about it can get involved. Because, of course, you know, contributing and being involved with open source is probably the best way to learn a technology, better than any college degree.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>14:28</p>\n\n\n\n<p>I was just talking to some folks about that; our active learning opportunities and our passive learning opportunities get into a different balance as we get older. And active learning opportunities are for real in school, right? And our passive learning opportunities where you get to look at someone else&#8217;s code, you get to review proposals on user flows, and things are harder and harder to come by unless you happen to be in an open source project where we&#8217;re just working on that in the open all day, every day. And I&#8217;ll put a link to the repos in the show notes, and also, I&#8217;ll include a list of the tech stack that we&#8217;re looking at there, just so that no one has to like, chase it down. But yeah, I&#8217;m excited about this new integration, not only for the CMS but also for the community.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>15:26</p>\n\n\n\n<p>And the whole library will be available to any plug-in who wants to call to it. And like we said, even other CMSs, much like we designed Gutenberg to be able to be used by other CMSs, how cool would it be if Drupal or Joomla or others were also able to leverage this library and allow their users to contribute to it as well?</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>15:47</p>\n\n\n\n<p>Yeah, absolutely. Absolutely. There is a burning question that I feel like we probably should just go ahead and answer here. I&#8217;ve been asked a few times, and I think you have been asked a few times whether this is an actual acquisition. And If yes, then what entity is it under? Is it under the WordPress Foundation? Is it under Automattic?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>16:10</p>\n\n\n\n<p>It&#8217;s a little complicated because, as you know, WordPress.org is not part of the Foundation. So basically, Automattic paid Creative Commons, the nonprofit. They will essentially redirect the old URL, so old links to Creative Commons Search won&#8217;t break. And we ended up hiring some of the people that they were parting ways with into Automattic. And then we put that open source code, and we&#8217;ll run the service on WordPress.org, and then those we hired, Automattic hired, will contribute to WordPress.org and the open source projects that power what we&#8217;re calling Openverse now.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>16:54</p>\n\n\n\n<p>I am.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>16:56</p>\n\n\n\n<p>That&#8217;s kind of an acquisition, but also from a nonprofit, and then going into something, which is not a nonprofit, but is open source and sort of freely available, which is WordPress.org, the website.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>17:06</p>\n\n\n\n<p>Yeah, that has been hard for me to answer because you&#8217;re right, it&#8217;s not like it was donated to WordPress or something. But everything that we&#8217;re doing is being donated back to the project, and of course, hopefully, really living into that WordPress ethos that we have of giving back to, to the project, something that made your work and your life better. So there&#8217;s some, some finger-crossing going on in there.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>17:37</p>\n\n\n\n<p>We could have skipped some of the steps because the code was open source; we could have just used it or something like that. But it was also a good opportunity, I think, to support the Creative Commons organization. And like we said, as part of that donation, there&#8217;ll be redirecting Creative Commons Search to WordPress.org. And honestly, we don&#8217;t need that, but it just from the point of view of keeping links workings, which is a big passion of mine. I like that none of the links will break or things to the Creative Commons Search, which I think has been around for&#8230; I don&#8217;t actually know the exact timeline, but a very long time. It&#8217;s been part of the internet for a long time. So we&#8217;re happy that it can now continue and be something that can plausibly be around for many decades to come.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:23</p>\n\n\n\n<p>Yeah, we&#8217;re going to build ourselves a little sustainable program around this project, and it&#8217;s going to be beautiful; I&#8217;m excited.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:31</p>\n\n\n\n<p>I did want to give everybody a cultural heads up. When I say crossing my fingers, I know that for some of our cultures, that means I was lying. That is not what I&#8217;m saying—crossing my fingers and moving forward on this with a lot of hope.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>18:51</p>\n\n\n\n<p>I tried to be careful about my local idioms when I&#8217;m talking to folks who don&#8217;t know that I&#8217;m from Arkansas, so I sometimes say weird things. But I&#8217;ve given up on y&#8217;all, for instance, like that has made its way right back into my language.&nbsp;</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>19:09</p>\n\n\n\n<p>Y&#8217;all is great. In Texas, we had a funny thing, which maybe applies to you now, which is &#8220;more nervous than a long-tailed cat in a room full of rocking chairs.&#8221; I bet you haven&#8217;t heard that one.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:21</p>\n\n\n\n<p>I have not, but I love it, and I&#8217;m going to fold it into my personal vocabulary for later use.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>19:30</p>\n\n\n\n<p>The response to this has been overwhelmingly positive, and I know that I am incredibly positive. I just mentioned like I&#8217;m moving forward through this with hope, even though there&#8217;s a lot of stuff that I don&#8217;t actually know about how we can implement it. I have never brought an existing open source community into an open source community that I&#8217;m currently working with. So there&#8217;s a lot of learning to be done in there. But, from your side Matt, like, are there any things that you are feeling anxiously hopeful about for this? Anything that you hope is right, but you&#8217;re not sure about?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>20:14</p>\n\n\n\n<p>Oh, this is just the first step of many. So just having the search engine, is I think good to provide a service to the internet. But where we can really leverage it is those next steps we already talked about, which is really building out the API and integrating the API with the WordPress admin to make it easily accessible within people&#8217;s dashboards. And the Gutenberg blocks to embed these images, quickly and easily, and with all the proper credit and everything. And then the next step, which was probably the one I&#8217;m most excited about, which is enabling folks to contribute to the Creative Commons. And by that, I mean the Commons of Images, which have open licenses and are encouraged for reuse and remixing and all those sorts of great things. And I think that anything we can do to increase more of that stuff on the internet also enables a lot of creativity and innovation.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:10</p>\n\n\n\n<p>All right. Well, that was an excellent conversation. I am really excited about this. I want to, for my work, just say a huge welcome to the folks over at CC Search and our brand new group around Openverse, and a big thanks to the folks over at the Creative Commons group. Matt, do you have anything else you want to share with any of our audience?</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>21:39</p>\n\n\n\n<p>No, I feel great that we could support the Creative Commons, keep this going for the open internet, and so excited to work alongside the folks who have been working on Openverse and take it to the next iterations and the next level.&nbsp;</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>21:56</p>\n\n\n\n<p>Beautiful. Well, Matt, thank you so much for joining me today. This was a wonderful conversation. My friends, this has been Matt Mullenweg, WordPress project co-founder, and project lead.</p>\n\n\n\n<p><strong>Matt Mullenweg&nbsp; </strong>22:08</p>\n\n\n\n<p>Thank you so much for having me.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy&nbsp; </strong>22:17</p>\n\n\n\n<p>Thank you for tuning in today to the WordPress Briefing. I hope that conversation made you as excited as I am about this new adventure that we&#8217;re embarking on with CC Search and that whole team. I&#8217;m going to put in the show notes a few links to where you can find them, where they&#8217;re doing their work, what you can collaborate on, and also some notes about the tech stack that goes into it. I&#8217;m your host, Josepha Haden Chomphosy.Thanks again for joining me and I&#8217;ll see you in a couple of weeks.</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, 10 May 2021 12:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:133:\"Gutenberg Times: Introduction to Global Styles, Block-based Themes and Two weeks of virtual WordPress events – Weekend Edition #168\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"https://gutenbergtimes.com/introduction-to-global-styles-block-based-themes-and-two-weeks-of-virtual-wordpress-events-weekend-edition-168/\";s: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:16152:\"<p>Howdy,  my friends! </p>\n\n\n\n<p>Hope you are all well. This week was a little less hectic, nevertheless again lots of information to digest about the block-editor and the upcoming WordPress 5.8 release. </p>\n\n\n\n\n\n<p>Today, you&#8217;ll find some great actionable tutorial, articles and tools. Again, I marvel at the extraordinary generosity of the people in the WordPress community from around the World. If you find something that&#8217;s useful to you, please let the authors. Most of them have a Twitter account that&#8217;s linked with the link to their contribution. </p>\n\n\n\n<p>Be well, be safe! </p>\n\n\n\n<p>Yours, 💕 <br />Birgit </p>\n\n\n\n<h2>Updates from the Gutenberg and Core Teams</h2>\n\n\n\n<p><strong>Anne McCarthy</strong> posted the summary of finding of the <a href=\"https://make.wordpress.org/test/2021/05/06/fse-program-query-quest-summary/\">Query Quest</a>. This time, a 3 or so dozen user from Japan took part in this call for testing.  Members on the Italian Polyglott team translated the call, too. The circle of people testing has expanded quite a bit. </p>\n\n\n\n<p>McCarthy also had two reminders for you: </p>\n\n\n\n<ul><li>The second round Call for questions is still open &#8211; <a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">send in your FSE question and concerns.</a> Deadline is May 12, 2021 </li><li>The next call for testing will be published on May 12, 2021 on the <a href=\"https://make.wordpress.org/test/\">Make blog of the Test team,</a> so clear out an afternoon in your week and reserve it for the next WordPress testing round. You&#8217;d be helping improve software, used by many, many millions of users. </li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Hector Pietro</strong>, technical lead on the Gutenberg project Phase 2, <a href=\"https://make.wordpress.org/core/2021/05/07/whats-next-in-gutenberg-may-2021/\">published the focus post for the team for May 2021.</a> There are no particular surprises listed, as the focus is getting a few projects ready to be merged with Core, but this post also aims beyond the feature Freeze on May 19 for block-editor features, RC 10.7. For Theme builders and developers, he also has a section on what particularly we all need to be aware of. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In anticipation, that the Widget block editor will land in WordPress Core, contributors <strong><a href=\"https://twitter.com/hellofromTonya\">Tonya Mork</a></strong> and <strong>Andrew Ozz</strong> published the <strong><a href=\"https://wordpress.org/plugins/classic-widgets/\">Classic Widget Screen plugin</a>,</strong> that allows you to opt-out of the new feature. Plugin and Theme developers can opt-out via this code snippet <code>remove_theme_support(\'widgets-block-editor\')</code>.<a href=\"https://github.com/WordPress/classic-widgets\"> Connect via GitHub</a> for issues and contributions. <strong>Justin Tadlock</strong> took the plugin for a spin and wrote a review: <a href=\"https://wptavern.com/classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system\">Classic Widgets Plugin Disables WordPress 5.8’s Upcoming Block-Based Widgets System</a>. </p>\n\n\n\n\n<p>🎙️ <a href=\"https://gutenbergtimes.com/podcast/changelog-43-block-patterns-directory/\"><strong>Episode #43 is now available with Show notes and transcript</strong></a> Greg and I discussed Gutenberg 10.5, the Block Patterns Directory and a Call for Testing for WordPress 5.8 Release. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Subscribe to the Gutenberg Changelog via your favorite podcast apps! </strong><br />🎙️ <a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a> | <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a> | <a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a> | <a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a> | <a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a> | <br />🎙️ <a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a> | <a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a> | <a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a> | <a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>If you have been a listener, please <a href=\"https://lovethepodcast.com/gutenbergchangelog\">write a review </a>on iTunes, Stitcher, Podchaser or Castbox. We would love to read from you, and more reviews help with the distributions.</p>\n\n\n\n\n<p>Speaking of podcasts: Grzegorz (Greg) Ziokowski and I talked with <strong><a href=\"https://twitter.com/palmiak_fp\">Maciek Palmowski</a></strong> of WP Owl, about <strong><a href=\"https://wpowls.co/podcast/contributing-to-wordpress/\">Contributing to WordPress</a></strong>, the inaugural episode for the new podcast WP Owlcast. We talked about the ins and outs of contributing to WordPress &#8211; about the various teams, how to get started, how to pace yourself, Five For the Future and so much more. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<h2>Building block-based Themes</h2>\n\n\n\n<p><a href=\"https://twitter.com/Adelina_Tuca\"><strong>Adelina Tuca</strong></a> of Themeisle interviewed <strong>Tammie Lister</strong>, design co-lead of Phase 1 of the block editor, now design lead at Extendify. <a href=\"https://themeisle.com/blog/tammie-lister-interview/\">&#8220;We Made Themes Become Plugins by Forcing Them to Have Functionality That Shouldn’t Be There</a>&#8220;, Lister is quoted. It&#8217;s a great discussion around the reset on how themes are developed with the block-editor and how it will not only change the creativity and productivity, but also user experience for content creators.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Riad Benguella </strong>posted an <strong><a href=\"https://riad.blog/2021/05/05/introduction-to-wordpresss-global-styles-and-global-settings/\">Introduction to WordPress’s Global Styles and Global Settings</a>.</strong> You can learn more about the thoughts behind the theme.json implementation for connecting your theme with all the block-editor features. For the first time in WordPress there is now a standard way for plugin block builders to be considerate about the theme developers design decisions and tap into its settings and styles. Be aware, although the theme.json implementation with come to WordPress core with 5.8, the Global Styles will still be experimental, so if you use them, they might change. </p>\n\n\n\n<p><strong><a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a></strong><a target=\"_blank\" href=\"https://marketplace.visualstudio.com/items?itemName=CarolinaNymark.wordpress-block-markup\" rel=\"noreferrer noopener\"> </a>turned  <a target=\"_blank\" href=\"https://marketplace.visualstudio.com/items?itemName=CarolinaNymark.wordpress-block-markup\" rel=\"noreferrer noopener\"><strong>her block markup snippets into </strong></a><strong><a target=\"_blank\" href=\"https://marketplace.visualstudio.com/items?itemName=CarolinaNymark.wordpress-block-markup\" rel=\"noreferrer noopener\">VS Code</a> extension</strong> with it, you can add blocks to your full site editing templates faster by typing the name of the block and have VS Code auto-complete it for you. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p> </p>\n\n\n\n<h2>Block Editor for Content Creators</h2>\n\n\n\n<p>If you are just now evaluating if the block editor is mature enough for your future client projects, or the right tool for your content production processes, <strong>Sam Wendland</strong> for WordPress VIP has some more in depth information:  <a href=\"https://wpvip.com/2021/04/09/how-the-wordpress-gutenberg-block-editor-empowers-enterprise-content-creators/\"><strong>&#8220;How the WordPress Gutenberg Block Editor Empowers Enterprise Content Creators&#8221;</strong></a>.</p>\n\n\n\n<h2>Block building for Developers </h2>\n\n\n\n<p><a href=\"https://twitter.com/wpmark\"><strong>Mark Wilkinson</strong> </a> of Highrise Digital share the <a href=\"https://www.youtube.com/watch?v=7HZ\"><strong>10 lessons he learned from developing WordPress sites with the block editor</strong></a> in this video. He also posted a <a href=\"https://twitter.com/wpmark/status/1390594183271002112\">Thread on Twitter</a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/kasparsdambis\"><strong>Kaspars Dambis</strong> </a>from <strong>XWP</strong> describes how to manage dependencies when creating your Gutenberg blocks in his post: <a href=\"https://xwp.co/javascript-dependencies-wordpress-blocks/\"><strong>Managing Javascript Dependencies for WordPress Blocks</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his tutorial <a href=\"https://millan.dev/2021/05/02/tutorial-convert-shortcodes-into-blocks\"><strong>Convert Shortcodes into blocks</strong></a> <strong><a href=\"https://twitter.com/milangd\">Milan Petrovic</a></strong> explains how to reuse shortcodes code and develop blocks for the block editor with support for sidebar settings</p>\n\n\n\n<h2 id=\"wpevents\">Upcoming WordPress Events</h2>\n\n\n\n<p><strong>10 &#8211; 14 May 2021</strong><br /><a href=\"https://pagebuildersummit.com?rpid=2&rpr=161\"><strong>Page Builder Summit 2021</strong></a><br />Gutenberg is part of it with the following sessions: </p>\n\n\n\n<ul class=\"has-small-font-size\"><li><strong>How to turn Gutenberg into a Page Builder with Stackable</strong> w/ Benjamin Intal</li><li><strong>Don’t Compete with Gutenberg &#8211; Embrace It</strong> w/ Danielle Zarcaro</li><li><strong>Google&#8217;s Core Web Vitals &#8211; Get Green With Gutenberg</strong> w/ Jake Pfohl</li><li><strong>Creating newsletters in the Gutenberg block editor</strong> w/ Lesley Sim</li><li><strong>Building Fast, Block-Based Landing Pages</strong> w/ Mike Oliver</li><li><strong>Panel &#8211; Preparing for the future of WordPress </strong>&#8211; Supported by WordPress.com &#8211; Marjorie Asturias, Anne McCarthy and Donna Cavalier</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>&nbsp;May 22-23, 2021</strong><br /><strong><a href=\"https://neo.wordcamp.org/2021/\">WordCamp Northeast Ohio Region</a></strong><br />Two sessions and a Lighting talk about Gutenberg are on the <a href=\"https://neo.wordcamp.org/2021/schedule/\">schedule </a></p>\n\n\n\n<ul class=\"has-small-font-size\"><li><strong>Anatomy of a Block Theme for Full Site Editing </strong>w/ Daisy Olson </li><li><strong>Web Components in WP, Gutenberg and as HTML plugins</strong> w/ Craig West </li><li><strong>Lightning Talk: The power of reusable blocks w/ Daisy Olson</strong> </li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>May 24-28, 2021</strong><br /><strong><a href=\"https://wordsesh.com/?uid=6471\">WordSesh 2021</a></strong><br />The <a href=\"https://wordsesh.com/#schedule\">session schedule</a> is now available, too. Here is the list of Gutenberg talks: </p>\n\n\n\n<ul class=\"has-small-font-size\"><li><strong>Blazing Fast Block Development</strong> w/ Lee Shadle </li><li><strong>Building Custom Block</strong>s w/ Rob Stinson</li><li><strong>Block-Based Themes</strong> – <strong>The Future Of Full Site Editing In WordPress</strong> w/ </li><li><strong>How the Block Editor Makes It Easier to Build Custom Websites</strong> w/ Danielle Zarcaro </li><li><strong>Build your own Block-Based&nbsp;Theme</strong> w/ Daisy Olsen (Workshop)</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>June 7 &#8211; 9th, 2021</strong><br /><strong><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe</a></strong><br />A virtual event and contributor day. <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">Call for sponsors is open.</a></p>\n\n\n\n<p><strong>June 20 &#8211; 26</strong><br /><strong><a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a></strong><br /><em>The schedule has been posted. Most sessions will be in Japanese, with exceptions, I think&#8230; </em></p>\n\n\n\n<p><strong>July 17 + 18th, 2021</strong><br /><strong><a href=\"https://santaclarita.wordcamp.org/2021/\">WordCamp Santa Clarita</a></strong><br />Calls for speakers (May 30th), sponsors, volunteers and organizers are open. </p>\n\n\n\n<p><strong>June 24 &#8211; 26, 2021</strong><br /><strong><a href=\"https://cochabamba.wordcamp.org/2021/\">WordCamp Cochabama</a></strong> (Colombia) </p>\n\n\n\n<p><strong>July 23, 2021</strong><br /><a href=\"https://www.wordfest.live/\"><strong>WordFest Live </strong></a>&#8211; <em>The&nbsp;</em>festival of WordPress<br />Call for Speakers is now open and submissions are due on May 24th, 2021</p>\n\n\n\n<p><strong>September 21 + 22, 2021</strong><br /><a href=\"https://2021.wpcampus.org/\"><strong>WPCampus 2021 Online</strong></a><br />&#8220;A free online conference for web accessibility and WordPress in higher education.&#8221; <a href=\"https://2021.wpcampus.org/proposals\">Call for Proposal is up</a> and proposal are due May 26, 2021</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On the<a href=\"https://wpcalendar.io/online/\"> <strong>Calendar for WordPress Online Events</strong> </a>you can browse a list of the upcoming WordPress Meetups, around the world, including WooCommerce, Elementor, Divi Builder and Beaver Builder meetups. </p>\n\n\n\n\n<p><em>Featured image: <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/116417508@N06/32958126080\">&#8220;Tiny City Block Building&#8221;</a>&nbsp;by&nbsp;<a href=\"https://www.flickr.com/photos/116417508@N06\" target=\"_blank\" rel=\"noreferrer noopener\">Matt Henry photos</a>&nbsp;is licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by/2.0/?ref=ccsearch&atype=rich\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY 2.0</a></em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 08 May 2021 20:23:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s: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:71:\"WPTavern: A Laptop and a Dream: Your Home Office Should Meet Your Needs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116269\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://wptavern.com/a-laptop-and-a-dream-your-home-office-should-meet-your-needs?utm_source=rss&utm_medium=rss&utm_campaign=a-laptop-and-a-dream-your-home-office-should-meet-your-needs\";s: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:4142:\"<img />\n\n\n\n<p class=\"has-drop-cap\">I began my journey into remote work while teaching English as a Second Language (ESL) in South Korea. I was 23 years old at the time. By day, I spent my time wrangling elementary and middle-school kids. At night, I was writing tutorials, building themes and plugins, and taking any work that landed on my [figurative] desk.</p>\n\n\n\n<p>My home office was my entire home, a spartan, one-bedroom/living/kitchen apartment. My workstation was a bed with several pillows piled up for back support.</p>\n\n\n\n<p>My first client contract was signed, developed, and completed on that bed. I made a mere $300 for creating a per-post thumbnail system for a popular blog (yes, I way undervalued my work). This was long before WordPress launched its featured image system.</p>\n\n\n\n<p>I was living the dream. Young and hungry, I took whatever odd jobs I could in preparation for eventually running my own WordPress-related business. Some nights, I would put in eight hours or more. On the weekends, I rarely actually slept in that bed. It had become my office chair. My lap was my desk.</p>\n\n\n\n<p>In the back of my mind, I suppose I always thought I would get a <em>proper</em> office. It would have all the bells and whistles like separate monitors for different tasks instead of tabs on a single screen. I would have the best mic and speaker setup &mdash; including the kitchen sink.</p>\n\n\n\n<p>After nearly a decade and a half, I realized I never needed all of that stuff. My laptop and I got along just fine. Of course, like many people, I tend to get stuck in my ways, looking for any excuse to not change.</p>\n\n\n\n<p>When I see articles like &ldquo;<a href=\"https://www.cnn.com/2021/03/18/success/home-office-design-setup-remote-work/index.html\">It&rsquo;s been a year. Here&rsquo;s what your home office should look like</a>,&rdquo; written by Kathryn Vasel for CNN Business, I tend to cringe before diving into it. There are some good takes in the article, such as getting natural light, taking breaks, and adjusting your posture.</p>\n\n\n\n<p>My idea of &ldquo;what your home office should look like&rdquo; is that it should be what makes you feel comfortable with the tools that allow you to do the job. For some folks, that is a laptop and a standing desk. For others, it includes specialized audio and video equipment.</p>\n\n\n\n<p>If you can afford it, I would at least recommend getting a good office chair. If you sit at a desk much of the day, skimp on the desk and other tools first.</p>\n\n\n\n<p>On the subject of affordability, it is also good to be mindful that a home office is a luxury, a privilege that few have. Like that small-town Alabama boy with his $400 Walmart computer in Korea, sometimes people just have to get by with what they have on hand.</p>\n\n\n\n<p>Now, 14 years later, I do have a home office. Like the first, it is spartan. It has the tools I need, and that is what I love about it. I do not spend all day in it. I prefer to move around from spot to spot.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Simple desk and chair.</li><li class=\"blocks-gallery-item\"><img />Cats included.</li></ul>\n\n\n\n<p>On days like today, those with mid-70s temps (Fahrenheit for all the non-Americans) and a slight breeze in the air, I like to sit on the back patio. I enjoy the birds singing. It is a good time of the year to watch the little ones learn to forage their own food. I keep an eye on the squirrels, making sure their mischievousness is limited to sneaking a few nuts from the bird feeders.</p>\n\n\n\n<p>It is also another reason I have always preferred a laptop over a desktop. Its utility allows me to lug it from the couch or desk to a spot outside amid nature.</p>\n\n\n\n<p>While much of the world&rsquo;s workforce is still figuring this whole remote, work-from-home thing out, many in the WordPress community have this down to a science. Or, at least, they know what works for them. I would love to hear and see (share pics in the comments &mdash; <a href=\"https://wordpress.org/support/article/embeds/#okay-so-what-sites-can-i-embed-from\">embeds are enabled</a>) what your home offices are like.</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, 07 May 2021 22:23:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:95:\"WPTavern: Classic Widgets Plugin Disables WordPress 5.8’s Upcoming Block-Based Widgets System\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116237\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:229:\"https://wptavern.com/classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system?utm_source=rss&utm_medium=rss&utm_campaign=classic-widgets-plugin-disables-wordpress-5-8s-upcoming-block-based-widgets-system\";s: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:4042:\"<p class=\"has-drop-cap\">Yesterday, WordPress released a core plugin named <a href=\"https://wordpress.org/plugins/classic-widgets/\">Classic Widgets</a>. Core contributors Tonya Mork and Andrew Ozz created the plugin under the WordPress Contributors account. It allows end-users to disable the upcoming block-based widgets system. Support is expected through 2022 or as long as necessary according to the plugin description.</p>\n\n\n\n<p>Decided last month by a small group of core leads following a demo, <a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">WordPress 5.8 will ship several sub-components</a> from its Full Site Editing project. FSE encompasses several self-contained parts that grant users broader control over the design and layout of their sites. One of those pieces is an overhaul of the widgets system.</p>\n\n\n\n<p>Widgets will one day become a legacy feature of the platform. However, they are not disappearing any time soon. During the transition from the pre-block era of WordPress to the eventual incorporation of all the sub-components of FSE, users and theme developers will sometimes need smaller stepping stones. Block-based widgets give users more ways to work with blocks outside of the post content area without diving head-first into an entire block-based experience.</p>\n\n\n\n<p>This is the first time many in the larger WordPress user community will be exposed to blocks in a new context. The editor that launched in WordPress 5.0 focused solely on the post content. The widgets system in 5.8 turns classic sidebars into block containers.</p>\n\n\n\n<p>In short, users will be able to stick any block in any sidebar.</p>\n\n\n\n<img />Block-based widgets screen.\n\n\n\n<p>This is a welcome step in transitioning users in the long run, especially those who use classic themes, which is still the majority of all users. However, there are cases where the Classic Widgets plugin will be necessary. The biggest will be:</p>\n\n\n\n<ul><li>Broken themes or quirky output.</li><li>Users simply preferring the old system.</li></ul>\n\n\n\n<p>Whatever the case may be, the plugin handles the switch.</p>\n\n\n\n<p>For those wondering why the core development team is not making sure block-based widgets work with all themes, it is because the two systems are not exactly alike. Plus, every theme design handles its sidebar output in its own way. There is no way to ensure 100% coverage.</p>\n\n\n\n<p>Many themes will have no issues at all. Some sidebars, depending on the design, could entirely break down. More likely than broken, custom sidebar and widget designs could simply look &ldquo;off&rdquo; on the front end.</p>\n\n\n\n<p>For example, compare a Heading block followed by the Archives block (first image) against the classic Archives widget (second image) when using the Twenty Fifteen theme:</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Block &ldquo;widget&rdquo;</li><li class=\"blocks-gallery-item\"><img />Classic widget</li></ul>\n\n\n\n<p>The typography of the Heading is different, and there is too much space below it. That is not an end-of-the-world scenario. It is the sort of quirk that may be common with many themes, at least until theme authors have had time to push out updates.</p>\n\n\n\n<h2>What Happens When Activating the Plugin?</h2>\n\n\n\n<img />Classic widgets screen.\n\n\n\n<p class=\"has-drop-cap\">Classic Widgets has no settings screen or anything to configure. It is a set-it-and-forget-it plugin. Its goal is to simply return users to the traditional widgets system in which they are familiar.</p>\n\n\n\n<p>If you start using the new block-based widgets system, you will lose all of your widget blocks upon activating the plugin. There is no going back, so be sure this is what you want. The former blocks will not reappear if you change your mind and deactivate Classic Widgets.</p>\n\n\n\n<p>However, if you add traditional widgets to your theme&rsquo;s sidebars while the plugin is active, you will not lose them. They will still appear on both the front and back end if you deactivate the plugin.</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, 06 May 2021 21:39:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:101:\"WPTavern: Dark Mode Plugin Repurposed and Renamed to WP Markdown Editor, Change Leaves Users Confused\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116107\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:245:\"https://wptavern.com/dark-mode-plugin-repurposed-and-renamed-to-wp-markdown-editor-change-leaves-users-confused?utm_source=rss&utm_medium=rss&utm_campaign=dark-mode-plugin-repurposed-and-renamed-to-wp-markdown-editor-change-leaves-users-confused\";s: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:8671:\"<p class=\"has-drop-cap\">Last year, I asked Tavern readers if WordPress should <a href=\"https://wptavern.com/should-wordpress-notify-users-of-plugin-ownership-changes\">notify end-users when a plugin&rsquo;s owner changes</a>. The post was not entirely based on theory. There have been some cases of real-world confusion. The consensus from the comments on that post seemed to be that, yes, such notifications would be welcome.</p>\n\n\n\n<p>When I wrote that post, there was already another plugin changing hands. <a href=\"https://wordpress.org/plugins/dark-mode/\">Dark Mode</a>, which had grown in popularity in its earlier years, had a new owner, WPPool. There were no public notifications of this ownership change. A mere <a href=\"https://github.com/azizultex/Dark-Mode/issues/173\">GitHub issue filed</a>, a corner of the web that few users venture.</p>\n\n\n\n<p>Fast forward a few months, and Dark Mode had not only changed owners, but it also had a new name and set of features unrelated to the plugin&rsquo;s original promise. The plugin is now named WP Markdown Editor and bundles at least part of the commercially available <a href=\"https://useiceberg.com/\">Iceberg Editor plugin</a>. It is also a limited version in which users are prompted to upgrade for the complete feature set.</p>\n\n\n\n<img />WP Markdown Editor (formerly Dark Mode).\n\n\n\n<p>Iceberg is licensed under the GPL version 2, so it is legal for anyone to fork it. However, there does not seem to be any mention of the copyright, and only a few references to the original product remain in the source code.</p>\n\n\n\n<p>While I did not perform a line-by-line comparison, it is clearly a fork when examining both plugins. However, the company has also built upon it with new features.</p>\n\n\n\n<img />Iceberg Editor.\n\n\n\n<p>&ldquo;We have recently added productivity sounds, new fonts (more legibility and one for Dyslexic users), which we think definitely adds value to new users,&rdquo; said the WPPool Team<sup><a href=\"https://wptavern.com/feed#footnote-1\">[1]</a></sup>.</p>\n\n\n\n<p>WPPool <a href=\"https://wppool.dev/introducing-wp-markdown-editor/\">announced the WP Markdown Editor plugin</a> in November 2020. However, the post was written as if it was a new product. Technically, it was, but there was no mention of repurposing an existing plugin to launch the features.</p>\n\n\n\n<p>The company reached out to the Dark Mode plugin owner in August 2020, which seemed to have changed hands a couple of times, at least. &ldquo;The plugin was discontinued, lacking security updates, compatibility with latest PHP versions, and the project was abandoned,&rdquo; said the WP Pool Team.&rdquo; And, since the last few updates, it was apparent that Classic Editor is not going to stay the same. Gutenberg was the future, and we wanted to give users a Dark Mode for Gutenberg as well.&rdquo;</p>\n\n\n\n<p>WPPool was able to adopt the plugin. The company kept the Dark Mode feature original to the plugin. However, they eventually began tacking on new features.</p>\n\n\n\n<p>&ldquo;Our intention was to add more features on top of it,&rdquo; said the WPPool Team. &ldquo;Why not create a new plugin? Because the plugin was already being abandoned, and we thought why not add some more features, keep the old functionality intact as well, and put regular updates?&rdquo;</p>\n\n\n\n<p>The change clearly left some users frustrated and confused about what was happening with the plugin. Many had installed it in hopes of having a simple method of toggling on a dark mode for the WordPress admin interface.</p>\n\n\n\n<img /><a href=\"https://wordpress.org/support/plugin/dark-mode/reviews/\">Reviews</a> after the change.\n\n\n\n<p>The plugin now has an &ldquo;Only Dark Mode&rdquo; setting, an option that users can enable to remove the additional features. It is disabled by default.</p>\n\n\n\n<p>When asked about whether the addition of seemingly unrelated features abused user trust, the WPPool Team replied, &ldquo;The problem was, since the last few updates of Gutenberg and Classic Editor &mdash; Classic Editor uses an iframe to load its content. It&rsquo;s not possible for the Dark Mode plugin to serve the Dark Mode in Classic Editor anymore. That&rsquo;s why some users were really frustrated. We really tried hard to restore that functionality to Classic Editor as well, but the way it is, we couldn&rsquo;t find a way to invoke Dark Mode on Classic Editor.&rdquo;</p>\n\n\n\n<p>While some support questions and reviews indicate the frustration with losing Classic Editor support, many others questioned the addition of features that make little sense as part of a dark-mode plugin.</p>\n\n\n\n<p>&ldquo;This used to be a dark mode feature plugin, but now it&rsquo;s been turned into a Markdown editor,&rdquo; <a href=\"https://wordpress.org/support/topic/markdown-editor-3/\">wrote Derrick Tennant</a>, an earlier contributor to the plugin. &ldquo;A complete bait and switch.&rdquo;</p>\n\n\n\n<p>Another user named <em>rehoff</em> <a href=\"https://wordpress.org/support/topic/another-one-bites-the-dust-2/#post-14197364\">had similar concerns</a>, stating, &ldquo;I still believe that it is not ok to so radically repurpose an otherwise popular plugin. I find it misleading.&rdquo;</p>\n\n\n\n<p>Back to the original question I posed last year, another user summed up the answer with a review titled &ldquo;<a href=\"https://wordpress.org/support/topic/this-plugin-has-been-sold-for-sure/\">This plugin has been sold for sure</a>.&rdquo;</p>\n\n\n\n<p>In private, one person has said that it feels like the team is capitalizing on the plugin&rsquo;s active install base, which currently sits at 3,000+.</p>\n\n\n\n<p>Adding to the potential confusion, the company has a separate and unrelated plugin named <a href=\"https://wordpress.org/plugins/wp-dark-mode/\">WP Dark Mode</a>. A <a href=\"https://wordpress.org/support/topic/do-not-install-deceptive-developer/\">reviewer noted on that plugin</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This same developer had another plugin called Dark Mode. They apparently sold the plugin to someone and now it&rsquo;s a random Markdown plugin with a terrible UI. All of a sudden, this random Markdown editor that I don&rsquo;t want or need is on my site.</p><p>Who knows what this plugin will become when they get enough users and decide to CA$H IN AGAIN??</p><p>If you like having random plugins installed on your site, give it a whirl. Otherwise it may be best to look for a different solution.</p></blockquote>\n\n\n\n<p>This case is unique because the Dark Mode plugin was once a <a href=\"https://wptavern.com/dark-mode-is-possibly-coming-to-a-wordpress-dashboard-near-you\">feature proposal for core WordPress</a>. Daniel James, the original creator, started the process to make this a reality in 2018. There was support for the idea, but it never jumped the hurdles needed for inclusion or a more formal proposal.</p>\n\n\n\n<p>James put the plugin <a href=\"https://wptavern.com/dark-mode-wordpress-plugin-up-for-adoption\">up for adoption in 2019</a>, stating that he was stepping back from plugin development but hoped that someone would pick it up. David Gwyer <a href=\"https://wptavern.com/dark-mode-wordpress-plugin-up-for-adoption#comment-282848\">picked it up</a> shortly after, eventually making two updates to the plugin. The plugin&rsquo;s <a href=\"https://plugins.trac.wordpress.org/log/dark-mode/\">commit history</a> shows that Tennant started contributing several months later before WPPool landed on the scene.</p>\n\n\n\n<p>While Dark Mode was never officially endorsed by WordPress or given the green light for merging into the core platform, there was still a level of trust that some might expect from a plugin that was at least proposed as a feature.</p>\n\n\n\n<p>Perhaps this is one of those cases where an ownership-change notification would have been warranted, but that notice would not have solved the issues that came months later.</p>\n\n\n\n<p>The developers did note the new Markdown editor in the plugin&rsquo;s change log: &ldquo;New: Write post/ page with markdown syntax (Markdown Editor).&rdquo; However, it is doubtful the average user read or understood what that meant. Maybe a more thorough disclosure system is necessary, and would such a system cover cases where plugins are repurposed?</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p id=\"footnote-1\"><strong>1:</strong> I have attributed quotes to the &ldquo;WPPool Team&rdquo; throughout this article. I was able to reach the company through their Facebook chat. However, the team did not provide a person&rsquo;s name and role within the company for attribution. At the moment, I still do not know which employee(s) I spoke with directly.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 May 2021 22:51:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:87:\"WPTavern: Jetpack 9.7 Makes More Features Available without Connecting to WordPress.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116112\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/jetpack-9-7-makes-more-features-available-without-connecting-to-wordpress-com?utm_source=rss&utm_medium=rss&utm_campaign=jetpack-9-7-makes-more-features-available-without-connecting-to-wordpress-com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2707:\"<p><a href=\"https://jetpack.com/2021/05/04/97-improvements-for-your-site/\">Jetpack 9.7</a> was released today with updates under the hood that ensure the plugin&rsquo;s blocks are compatible with the <a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\">full-site editing</a> features coming in WordPress 5.8. It also changes how sites access features that require the WordPress.com infrastructure.</p>\n\n\n\n<p>A <a href=\"https://github.com/Automattic/jetpack/pull/19637\">pull request</a> merged in version 9.7 changes the connection flow to make Jetpack active as soon as the plugin enables a site level connection, instead of requiring a user to authenticate with WordPress.com in order for it to work. This is what the Jetpack team has been referring to as &ldquo;user-less&rdquo; in development.</p>\n\n\n\n<p>The <a href=\"https://github.com/Automattic/jetpack/pull/19614\">copy has been updated</a> for this step so that after Jetpack is connected on a site level, it says, &ldquo;Jetpack is activated! Unlock more amazing features by connecting a user account.&rdquo; </p>\n\n\n\n<p>Jetpack users who connect their sites will immediately have access to Stats, Site Accelerator, most Jetpack blocks, widget visibility, SEO tools, Related Posts, Likes, and many more modules. Other features, such as Publicize, Activity Log, Monitor, and Backup require you to authorize Jetpack to perform these actions on your behalf.</p>\n\n\n\n<p>A new documentation <a href=\"https://jetpack.com/support/why-the-wordpress-com-connection-is-important-for-jetpack/\">page</a> details why a WordPress.com connection is necessary for certain features, bringing more transparency to what has been a contentious topic in the past. The new page outlines which features are available for site connections versus authenticated WordPress.com accounts. These specific updates in 9.7 do not change any of the data or activity that Jetpack tracks or uses.</p>\n\n\n\n<p>The general public was not privy to the product discussion behind making more features immediately available to user-less accounts, but there are a few reasons this is a good business idea. It allows users to get started faster so they get hooked into using more features on their sites before being forced to connect to a WordPress.com account. This will likely reduce the number of users who install the plugin but decide not to move forward because of needing to connect an account.</p>\n\n\n\n<p>Jetpack 9.7 also brings performance improvements to the Carousel feature, several bug fixes for Instant Search, and more. The full list of enhancements and fixes can be found in the <a href=\"https://wordpress.org/plugins/jetpack/#developers\">changelog</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 May 2021 03:35: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: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:84:\"WPTavern: It Is Time for WordPress Theme Authors To Step Up Their Block Pattern Game\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=116137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"https://wptavern.com/it-is-time-for-wordpress-theme-authors-to-step-up-their-block-pattern-game?utm_source=rss&utm_medium=rss&utm_campaign=it-is-time-for-wordpress-theme-authors-to-step-up-their-block-pattern-game\";s: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:7703:\"<p class=\"has-drop-cap\">Going through my routine this week, I skimmed the latest WordPress theme releases and found a new project that supported the block editor.  It even shipped a few custom patterns. While the design was nothing extraordinary, it was a solid theme overall. However, after spending the better part of today writing about it, I did not think I could move forward with the story. Something was bugging me.</p>\n\n\n\n<p>It was the same thing I have felt with several others as of late. There were too many missed opportunities. The theme had the foundation, the underlying potential, to be more than it was.</p>\n\n\n\n<p>The theme had a commercial &ldquo;pro&rdquo; version that users could purchase. However, nearly every pro feature relied on old-school tactics of upselling extra theme options. The one exception was a block-related feature that will be free as part of the Global Styles component likely to ship with WordPress later this year.</p>\n\n\n\n<p>Where were the custom block styles? Where could a user snag some unique patterns? Extra nav menus, sidebars, color settings, and typography options are becoming less and less of a value-add for end-users. It is probably safe money right now, and I can understand the comfort of not taking too many chances.</p>\n\n\n\n<p>Theme authors need to start shifting gears. Upsells need to come in the form of features that will not be available from stock WordPress. Right now, that means building unique block patterns and styles.</p>\n\n\n\n<h2>Exploring Pattern Ideas</h2>\n\n\n\n<p class=\"has-drop-cap\">In the last month, I have been tinkering with custom patterns. While I was in the design and development business for over a decade, what I was able to accomplish with the block editor alone &mdash; using no custom code &mdash; and a well-rounded block-ready theme is merely scratching the surface. We have far better talent in the WordPress community, and I want to see their artistry unleashed.</p>\n\n\n\n<p>It all started with the WP Tavern <a href=\"https://wptavern.com/podcast\">Jukebox podcast</a> &mdash; you should check out episodes <a href=\"https://wptavern.com/podcast/1-josepha-haden-chomphosy-on-the-past-present-and-future-of-wordpress\">#1</a> and <a href=\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress\">#2</a> if you have not heard them already. Nathan Wrigley, the new host, pushed me enough to put my design-and-dev cap back on to implement some features that he needed. Over the years, I have not worked much with podcasting or any type of audio. This was new territory for me. Ultimately, the podcast inspired me to think about audio patterns.</p>\n\n\n\n<p><em>What is possible with WordPress&rsquo;s editor today?</em></p>\n\n\n\n<p>I scoured the web for various layouts, looking for modern audio presentations. Numerous concepts were impossible for an end-user to implement from the editor alone. They would need extensive custom block styles from the themes themselves. And, there were several designs that I simply did not think could be done at all, but these typically had plugin-territory elements.</p>\n\n\n\n<p>However, I did find ideas that I could run with and make my own. I started with a simple audio file from <em>The Martian</em> soundtrack &mdash; I had re-watched the movie the night before and was on a David Bowie kick.</p>\n\n\n\n<img />Soundtrack single audio pattern.\n\n\n\n<p>It was simple. Just add Group, Columns, Image, Paragraph, Heading, Audio, and Social Icons blocks. I was happy with the result, and some of my Twitter followers <a href=\"https://twitter.com/justintadlock/status/1380199029955567623\">responded positively</a>.</p>\n\n\n\n<p>Inspired by the support, I created an alternative layout. It was even simpler by adding Cover, Paragraph, Heading, Audio, and Social Icons blocks.</p>\n\n\n\n<img />Audio embed pattern nested in a Cover block.\n\n\n\n<p>Based on the original pattern, I built one that used a SoundCloud embed instead of the Audio block. I also created another with some alterations that catered more toward podcasters.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>SoundCloud audio and podcasting patterns.\n\n\n\n<p>As I dived deeper into this project, the more capable I became at creating layouts. I began to understand what some of the limitations were and piecing everything together around them.</p>\n\n\n\n<p>One of the most problematic areas with the editor is that it does not hand over enough spacing control. Therefore, I had to make liberal use of the Spacer block, something I prefer not to use because it relies on pixel units and puts an extra <code>&lt;div&gt;</code> into the markup. To build some patterns, I had to become a little less of a purist and just use the available tools.</p>\n\n\n\n<p>That change in mindset opened some more possibilities. I built a couple more audio-related block patterns. They were, again, simple layouts, but I wanted to make them stand out visually with imagery that end-users could add. The goal is to give users one-click access to pre-designed sections, starting points where people can showcase their own creativity.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>DJ and musician block patterns.\n\n\n\n<p>The next step was to start thinking beyond audio patterns. There is so much more others can do in that space. I wanted to venture out a bit more.</p>\n\n\n\n<p>I have since built several other patterns like the following news-type article header that I would love to use on the Tavern in the future:</p>\n\n\n\n<img />News or data-driven article header pattern.\n\n\n\n<p>I could share more concepts, but this seems like an ideal place to stop. The goal is not to showcase my portfolio of patterns. It is to inspire our theme design community in hopes that they build something far better. I also wanted to show how easy it was to pop out a few patterns. Instead of hours of development time, many ideas were cut down to mere minutes. That is the power the block system provides today.</p>\n\n\n\n<p>When I wrote about the block system creating <a href=\"https://wptavern.com/block-system-will-create-more-commercial-opportunities-for-wordpress-theme-authors\">commercial opportunities for theme authors</a> in January, it was a theoretical post. This is a follow-up that puts it into a little more practice (without the actual selling, of course).</p>\n\n\n\n<p>Imagine, as a theme company, you are building a freemium theme for musicians. You might want to include a few base patterns for users to choose from. However, there is an endless number of alternatives you could offer as part of a pro package.</p>\n\n\n\n<p>I am sure there is already a theme author/company out there right now with a multi-purpose theme concept in mind that will eventually have hundreds of patterns. I can only hope that they have a solid categorization system or offer separate packages or imports.</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">block pattern directory</a> is slated to land alongside WordPress 5.8. At first, it will primarily be core patterns. However, others will be encouraged to contribute over time. This is a welcome feature for the platform, but it will never match every theme design perfectly. Each theme has its own design nuances. Each has different methods of solving problems.</p>\n\n\n\n<p>The best patterns will come from theme authors themselves, especially when combined with custom block styles, packaged and marketed as part of their theme&rsquo;s experience. Developers can wait until the entire market catches up or jump ahead of the game.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 May 2021 23:08: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:14:\"Justin Tadlock\";s: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:54:\"WordPress.org blog: The Month in WordPress: April 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10253\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2021/05/the-month-in-wordpress-april-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11511:\"<blockquote class=\"wp-block-quote\"><p>As WordPress grows, both in usage as a CMS and in participation as a community, it’s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS.&nbsp;</p></blockquote>\n\n\n\n<p class=\"has-drop-cap\">That was <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a> on the “<a href=\"https://wordpress.org/news/2021/04/your-opinion-is-our-opportunity/\">Your Opinion is Our Opportunity</a>” episode of the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing Podcast</a>, speaking about the importance of co-development and testing for the continued growth and maintenance of WordPress. This month’s updates align closely with these ideas. Read on and see for yourself.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.7.1 is launched</h2>\n\n\n\n<p>WordPress security and maintenance release &#8211; <a href=\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\">5.7.1</a> came out in April. The release fixes two major security issues and includes 26 bug fixes. You can update to the latest version directly from your WordPress dashboard or by <a href=\"https://wordpress.org/download/\">downloading</a> it from WordPress.org.</p>\n\n\n\n<p>Want to contribute to WordPress 5.8? Check out the <a href=\"https://make.wordpress.org/core/5-8/\">5.8 Development Cycle</a>. To contribute to core, head over to <a href=\"https://core.trac.wordpress.org/\">Trac</a>, and<a href=\"https://core.trac.wordpress.org/report/6\"> pick a 5.8 ticket</a> –– more info in the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>. Don’t forget to join the WordPress <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a> and follow the <a href=\"https://make.wordpress.org/core/\">Core Team blog</a>. The Core Team hosts weekly chats on Wednesdays at <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=5&min=00&sec=0\">5 AM</a> and <a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?hour=20&min=00&sec=0\">8 PM</a> UTC.&nbsp;</p>\n\n\n\n<h2>Gutenberg Version 10.3, 10.4, and 10.5 are out</h2>\n\n\n\n<p>Contributor teams released Gutenberg <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">version 10.3</a> on April 2, <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> on April 14, and <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a> on April 30! <a href=\"https://make.wordpress.org/core/2021/04/02/whats-new-in-gutenberg-10-3-31-march/\">Version 10.3</a> improves the block toolbar and the navigation editor, whereas <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">version 10.4</a> adds block widgets to the customizer and improvements to the site editor list view. In <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\">version 10.5</a>, you will find a set of new block patterns and enhancements to the template editing mode, along with the ability to embed PDFs.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core Team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the <a href=\"https://wordpress.slack.com/archives/C02QB2JS7\">#core-editor</a> channel in the <a href=\"https://make.wordpress.org/chat/\">Make WordPress Slack</a>. The “<a href=\"https://make.wordpress.org/core/2021/03/08/whats-next-in-gutenberg-march-2021/\">What’s next in Gutenberg</a>” post offers more details on the latest updates. If you are unfamiliar with the Gutenberg plugin, <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\">learn more in this post</a>.</p>\n\n\n\n<h2>Full Site Editing updates</h2>\n\n\n\n<p>Following the <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Full Site Editing (FSE) feature demo</a> hosted by <a href=\"https://profiles.wordpress.org/matveb/\" target=\"_blank\" rel=\"noreferrer noopener\">Matías Ventura</a>, the project leadership decided that WordPress 5.8 will only include some FSE features, such as a template editor for pages/blank templates, a widget editor screen, and the theme.json mechanism. Other features like the Global Styles interface and Site Editor (managing all templates) will be made available later. The team has <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">started working on the next steps</a> in shipping these chosen FSE features with version 5.8.</p>\n\n\n\n<p>New to FSE? Check out <a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\">this blog post</a> for a high-level overview of the project. You can help test FSE by participating in the <a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">latest FSE Outreach Program testing call </a>–– leave your feedback by May 5th. Want to participate in future testing calls? Stay updated by following the <a href=\"https://make.wordpress.org/test/2021/04/22/upcoming-fse-outreach-program-schedule/\">FSE outreach schedule</a>. You can also <a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">submit your questions</a> around FSE right now.</p>\n\n\n\n<h2>WordCamp Europe 2021 is on the calendar</h2>\n\n\n\n<p>One of the most exciting WordPress events,&nbsp; <a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a>, will be held online on June 7-9, 2021! Event organizers have opened up calls for <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">sponsors</a> and <a href=\"https://europe.wordcamp.org/2021/call-for-media-partners-and-supporters/\">media partners</a>. Free tickets for the event will be available soon — <a href=\"https://europe.wordcamp.org/2021/#subscribe-email\">sign up for email updates</a> to be notified when they are out!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">41% of the web</a>!</li><li><a href=\"https://make.wordpress.org/updates/2021/04/15/quarterly-updates-q1-2021/\">Q1 2021 updates from the WordPress project</a> have been published.</li><li>The Core Team discussed a <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">proposal</a> to treat Federated Learning of Cohorts (FLoC), a Google Chrome feature, as a security concern. The team <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41207\">eventually decided</a> to track the status of the FLoC trial/implementation in a <a href=\"https://core.trac.wordpress.org/ticket/53069\">Trac ticket</a> and monitor periodically.&nbsp;</li><li>The Core Team will <a href=\"https://make.wordpress.org/core/2021/04/22/ie-11-support-phase-out-plan/\">remove Internet Explorer 11 support in WordPress version 5.8</a>.&nbsp;</li><li>The Community Team has opened up a <a href=\"https://make.wordpress.org/community/2021/04/26/discussing-the-path-to-in-person-wordcamps/\">discussion on the path to in-person WordCamps</a> and is requesting feedback from community members.</li><li>The Community Team is also <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">requesting feedback</a> on whether companies who run competitive ads against WordPress can apply to sponsor WordCamps.&nbsp;</li><li><a href=\"https://centroamerica.wordcamp.org/2021/\">WordCamp Centroamérica 2021</a> and <a href=\"https://greece.wordcamp.org/2021/\">WordCamp Greece 2021</a> were held successfully in April. Videos of WordCamp Centroamérica are now available <a href=\"https://wordpress.tv/event/wordcamp-centroamerica-2021/\">on WordPress.tv</a>! While you are at it, don&#8217;t miss this<a href=\"https://central.wordcamp.org/news/2021/04/29/making-a-great-online-conference-experience-at-wordcamp-prague/\"> excellent recap of WordCamp Prague 2021</a> on the WordCamp Central blog.</li><li>Contributor teams are actively working on building the <a href=\"https://wordpress.org/patterns/\">Block Pattern Directory</a>. You can read about work updates on this project from the <a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">Meta Team</a> and the <a href=\"https://make.wordpress.org/design/2021/03/30/wordpress-org-patterns-directory/\">Design Team</a>.</li><li>Check out the <a href=\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\">blog post on getting started with the Figma WordPress Design Library</a>. You can use the library to create design prototypes for the WordPress UI in <a href=\"https://www.figma.com/\">Figma</a>.</li><li>The Polyglots Team is making significant progress on the <a href=\"https://make.wordpress.org/polyglots/2021/04/26/polyglots-training-working-group-update-3/\">Polyglots Training course</a>.</li><li>The Training Team has <a href=\"https://make.wordpress.org/training/2021/04/23/discussion-contributor-ladders-for-the-training-team-and-learn-wordpress/\">proposed a contributor ladder</a> as a resource for team contributors to understand ways to participate and find growth opportunities.&nbsp;</li><li>The <a href=\"https://github.com/WordPress/Requests\">Requests library</a> has moved to the WordPress GitHub organization and has a new release: <a href=\"https://github.com/WordPress/Requests/releases/tag/v1.8.0\">version 1.8.0</a>.&nbsp;</li><li>The Docs Team is<a href=\"https://make.wordpress.org/docs/2021/04/05/update-on-the-revision-of-documentation/\"> working on redesigning HelpHub</a> by reviewing its content and design.</li><li>The Themes Team has shared a proposal on <a href=\"https://make.wordpress.org/themes/2021/04/22/removing-blockers-for-block-themes/\">fixing upload issues for block themes</a>.</li><li><a href=\"https://wordpress.org/news/2021/04/people-of-wordpress-tyler-lau/\">Tyler Lau</a> from the U.S. was featured in April’s <a href=\"https://wordpress.org/news/category/heropress/\">People of WordPress</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include in the next “Month in WordPress” post? Please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it using this form</em></a><em>.</em></p>\n\n\n\n<p><em>The following folks contributed to April’s Month in WordPress: <a href=\"https://profiles.wordpress.org/andreamiddleton/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>andreamiddleton</a> <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a> <a href=\"https://profiles.wordpress.org/chaion07/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>chaion07</a> <a href=\"https://profiles.wordpress.org/hlashbrooke/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>hlashbrooke</a> and <a href=\"https://profiles.wordpress.org/jrf/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jrf</a>&nbsp;</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 May 2021 15:00: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:14:\"Hari Shanker R\";s: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:54:\"WPTavern: A WordPress Voting Guide to the Webby Awards\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115895\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:153:\"https://wptavern.com/a-wordpress-voting-guide-to-the-webby-awards?utm_source=rss&utm_medium=rss&utm_campaign=a-wordpress-voting-guide-to-the-webby-awards\";s: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:7486:\"<p>The People&rsquo;s Voice voting for the <a href=\"https://vote.webbyawards.com/\">25th annual Webby Awards</a> closes in three days on May 6, 2021. Since 1996, the Webbys have recognized excellence on the internet among what is now seven major media types: websites, video, advertising, media and PR, social, apps, mobile, voice, games, and podcasts. After nearly 13,500 entries were submitted from 70 different countries, the&nbsp;<a href=\"https://www.iadas.net/\">International Academy of Digital Arts &amp; Sciences</a> selected fewer than 10% as Nominees and opened voting on April 20. </p>\n\n\n\n<p>WordPress is well-represented among nominees and honorees in the website category. In fact, nearly every single sub-category of five nominees includes at least one WordPress site. If you want to vote for the WordPress sites linked below, <strong>click on the category name to view the five nominees and vote for your favorite one</strong>. Just remember that you can only vote for one site in each category to win the Webby People&rsquo;s Voice.</p>\n\n\n\n<p>In the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/government-civil-innovation\">Government &amp; Civil Innovation</a> category, 4 out of 5 nominees are powered by WordPress. The current front-runner, <a href=\"https://www.whitehouse.gov/\">WhiteHouse.gov</a>, was built by the Wide Eye agency with help from 10up, and a team of many others. The website uses the block editor with a highly customized site editing and management experience.</p>\n\n\n\n<p><em><strong>Update:</strong> WordPress actually sweeps this category with 5/5 nominations, as we just learned the <a href=\"https://xqsuperschool.org/\">XQ Super Schools</a> site is a headless WordPress + Gatsby + WPGraphQL site. The <a href=\"https://politicalplaylist.com/\">Political Playlist</a> site is also a is headless WordPress site using NuxtJS + WPGraphQL.</em></p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>10up has another competing site in that same <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/government-civil-innovation\">Government &amp; Civil Innovation</a> category, <a href=\"https://www.grants.ca.gov/\">The California Grants Portal</a>. The company designed and built a web portal for state agencies to submit their grant data. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>10up also worked on another nominated site, <a href=\"https://theundefeated.com/\">The Undefeated</a>, which was recently migrated to the block editor. The site is contending in the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/cultural-blogwebsite\">Cultural Blog/Website</a> category against two other WordPress-powered sites: <a href=\"https://www.nybooks.com/\">The New York Review of Books</a> and <a href=\"https://www.culturetype.com/\">Culture Type</a>.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Web developer Daniel Schutzsmith shared in Post Status&rsquo; Slack that a site he built custom Gutenberg blocks for is up for a Webby under the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/professional-services-self-promotion\">Professional Services &amp; Self-Promotion</a> category. The site, <a href=\"https://www.audouy.com/\">audouy.com</a>, is a portfolio for production designer Fran&ccedil;ois Audouy. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Real estate has been a hot industry over the past year and 2 out 5 nominees in the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/real-estate\">Real Estate category</a> are running on WordPress: <a href=\"https://www.tripointehomes.com/\">Tri Pointe Homes</a>, a US-based builder site, and Zillow&rsquo;s &ldquo;<a href=\"https://www.zillow.com/z/c/what-moved-us/\">What Moved Us</a>&rdquo; site. Zillow is currently in 2nd place with its WordPress-powered landing page that details visitors&rsquo; search behavior.  It also displays surprising facts from this past year of sales and searches, such as &ldquo;In 2020, 1 in 8 people made an offer sight unseen.&rdquo; The page is beautifully illustrated and looks just as good on mobile as it does on desktop.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/activism\">Activism category</a>, Amnesty International&rsquo;s WordPress-powered <a href=\"https://teargas.amnesty.org/#top\">Tear Gas investigation website</a> is leading the way in 1st place right now. <a href=\"https://visualizenyc.net/\">Visualize NYC 2021</a>, the other WordPress site in this category, is currently in 5th place. Both are powerful examples of primarily black and white design created to evoke a response from the visitor.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>In the <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/charitable-organizationsnon-profit\">Charitable Organizations/Non-profit category</a>, 3 out of 5 nominees are using WordPress, including <a href=\"https://www.everytown.org/\">Everytown</a>, <a href=\"https://antisemitism.adl.org/\">Antisemitism Uncovered</a>, and the <a href=\"https://photography2020.org/\">Photography 20/20 Compendium</a>. Each design is wildly different from the next and it&rsquo;s tough to tell that these are WordPress sites without viewing the source code. Everytown, a gun violence prevention organization, leads the pack in this category, followed by Antisemitism Uncovered in 2nd place, and the Photography 20/20 Compendium in 5th place.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The <a href=\"https://vote.webbyawards.com/PublicVoting#/2021/websites-and-mobile-sites/general-websites-and-mobile-sites/law\">Law category</a> is also dominated by WordPress sites with 3 out of 5 nominees using the software to create compelling designs. <a href=\"https://www.sexualharassment-california.com/\">Gilleon Law Firm</a>, which handles sexual harassment cases, is currently in first place by a wide margin, followed by two other WordPress sites, <a href=\"https://ashcroftlawfirm.com/\">Ashcroft</a> and <a href=\"https://www.chamblisslaw.com/\">Chambliss, Bahner &amp; Stophel P.C.</a>, in 2nd and 4th place. If you build websites for attorneys, these sites should provide some solid design inspiration. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>One thrilling byproduct of the Gutenberg project can be seen in these nominations: As more of digital forerunners adopt the block editor and explore its limits, WordPress site designs have become less predictable and more vibrant. </p>\n\n\n\n<p>These nominations are just a handful of the best WordPress sites nominated for a Webby, and the&nbsp;<a href=\"https://www.iadas.net/\">International Academy of Digital Arts &amp; Sciences</a> site is also running on WordPress. If you find more WordPress site nominations or want to share one you worked on, please leave a link in the comments. Webby People&rsquo;s Voice voting closes on May 6, 2021, so there is still time to help your favorite websites take first place. Winners will be announced on May 18, 2021.</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, 03 May 2021 18:22: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: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:131:\"Gutenberg Times: New Era for WordPress Themes in 2021 – Updates and voices around WordPress 5.8 release  – Weekend Edition #167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17643\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://gutenbergtimes.com/new-era-for-wordpress-themes-in-2021-updates-and-voices-around-wordpress-5-8-release-weekend-edition-167/\";s: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:25064:\"<p>Howdy, </p>\n\n\n\n<p>Happy May 2021! We are a third into 2021. Phew. </p>\n\n\n\n\n\n<p>I can&#8217;t tell you how relieved I feel that my husband and me as well as many US friends got vaccine shots. It&#8217;s also bitter-sweet and sad. In other places of the world there are again lock-downs.  Hospitals are filling up fast. Hundreds of thousands new infections. People dying. Distribution of vaccines is slow, if there is any available at all. The WordPress community spans all around the globe. We are not out of the woods. We still have friends and business partners in places of crisis. The team of the New York Times curated this list: &#8220;<a href=\"https://www.nytimes.com/article/india-covid-how-to-help.html\">How to Help India Amid the Covid Crisis</a>&#8220;. Consider donating and ask your employer if they have matching programs. <br /><br />How are you and your communities weathering the epidemic 14 months later? Please share in a reply!</p>\n\n\n\n<p>Hang in there, my friends. Stay safe. 😷</p>\n\n\n\n<p>Yours, 💕<br />Birgit</p>\n\n\n\n<h2>WordPress 5.8: Four weeks to Feature Freeze: </h2>\n\n\n\n<p>The Gutenberg and WordPress Core team is gearing up for the <a href=\"https://make.wordpress.org/core/5-8/\">next major release 5.8</a> in July 2021. We are less than four weeks and two more Gutenberg plugin releases away from feature freeze.  </p>\n\n\n\n<h3>Goals of Gutenberg updates for the next major WordPress release</h3>\n\n\n\n<p>In the last two or three weeks, I listened to the interviews and Q &amp; As. I learned the team working on the block-editor pieces for this release has two goals: </p>\n\n\n\n<p>First, to release enough stable tools for developers and designers to start using aspects of Full-site editing in their themes, via theme.json and hybrid constructs for classic themes.  The hope is that by the time the rest of Full-Site-Editing interface is released to the users in December 2020, there are plenty of block-based themes and block patterns available from the community of extenders.</p>\n\n\n\n<p>Second, to introduce the new <em>page template feature</em>. It&#8217;s a new way to use the block editor to create and modify page templates for landing pages. This will be the first time in WordPress that a content creator or site owner would be able to change headers and footer for single pages. This takes a bit of a switch in the publishing / producing mindset. Gutenberg developers are hoping here for plenty of user feedback to make sure that the new blocks and in their new context, the user-facing elements are clear enough to handle in this smaller scope of a single page before the expanded version of Full-site editing is released in December 2021, that allows users to create and modify site-wide templates, template parts and to build new themes. </p>\n\n\n\n<h3>Block-Editor Features to come to  WordPress 5.8</h3>\n\n\n\n<p>After the <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Go/NoGo meeting and decision</a>, technical lead <strong>Hector Prieto </strong>published <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\"><strong>Full Site Editing Go/No Go: Next steps</strong></a> with more details around the full scope of the block editor pieces for WordPress 5.8 </p>\n\n\n\n<ul><li>Gutenberg plugin releases 9.9 &#8211; 10.7</li><li>First version of theme.json for theme builders of block-based themes. </li><li>Theme Blocks (Query, Navigation, Site information)</li><li>Template Editing with the post editor</li><li>Widget Editor and block widgets in Customizer</li><li>Persistent List view in the post editor</li><li>Duotone (Image filter) block supports</li><li>Gallery block refactor</li></ul>\n\n\n\n<p>In the post you&#8217;ll find links to issues and pr for even more details. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Increased Buzz about Full-Site Editing</h2>\n\n\n\n<p>On the WordPress News site, there were a few posts regarding the block-editor and Full-Site Editing. Using the WordPress News space to published more frequently about the ongoing development and ideas is one part of the stronger communication outreach planned for this new feature release. The more intense communication about Full-site editing from the core team is a direct result from the feedback from the WordPress community after the first  Gutenberg release in 2018. </p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2021/04/curious-about-full-site-editing/\"><strong>Curious about Full-Site Editing</strong></a> by <a href=\"https://twitter.com/JosephaHaden\"><strong>Josepha Haden Chomphosy</strong></a>. A short article on what Full-site Editing is and how it will affect different kinds of users. You have been following Full-site Editing for a while now. So it&#8217;s not necessarily for you. It is a great first article to share with WordPress users and co-workers that hear about Full-site editing for the first time. The resources share are good starting place to catch up. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The second article wasn&#8217;t about Full-site editing, so much but about the Gutenberg. <strong>Anne McCarthy </strong>posted <a href=\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-plugin/\"><strong>Become an Early Adopter With the Gutenberg Plugin</strong></a>, and tackled the various terms, we have mostly used as synonyms between Gutenberg, block-editor etc. Also, a good place to start, if someone likes to dive deeper into Gutenberg beyond the WordPress Core implementation. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The latest article in the WordPress News section, is the tutorial <a href=\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\"><strong>Getting Started with the Figma WordPress Design Library</strong></a> by <strong>James Koster.</strong> Learn how to quickly create design prototypes for WordPress UI in <a href=\"https://www.figma.com/\">Figma</a>, a collaborative interface design tool. The tutorial is quite comprehensive and not only shows you how you work with it. Being knowledgeable about Figma can also jump start contributing to WordPress as it&#8217;s the tool of choice by the WordPress design team.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>WP Briefing is the new podcast hosted by <strong>Josepha Haden Chomphosy</strong>. In her fifth episode, she was  <strong><a href=\"https://wordpress.org/news/2021/03/talking-full-site-editing-with-matias-ventura/\">Talking Full Site Editing with Matías Ventura</a></strong> (<em>ICYMI</em>). Josepha and <a href=\"https://twitter.com/matias_ventura\">Matías</a> answered user questions, from “is full site editing a standalone plugin?” to “will full site editing break my current site?”. The episode comes with a transcript. </p>\n\n\n\n<h2>Gutenberg Release and Block editor updates</h2>\n\n\n\n<p>In <a href=\"https://make.wordpress.org/core/2021/04/23/core-editor-improvement-refining-the-block-toolbar/\"><strong>Core Editor Improvement: Refining the Block Toolbar</strong></a>, Anne McCarthy elaborates on the refinement and standardization implemented for the Block Toolbar with the goal to simplify the hierarchy of the block, to make it more predictable what goes where.&nbsp;Below graphic is part of the newly updated <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/designers/block-design/#group-block-toolbar-controls-with-related-items\">Best practices for Block Design</a> page of the developer handbook. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>This week Gutenberg 10.5 was released and in short succession v 10.5.1, v 10.5.2 and v 10.5.3. to fixing regression bugs. <a href=\"https://twitter.com/ajitbohra\"><strong>Ajit Bohra </strong></a>wrote about <a href=\"https://make.wordpress.org/core/2021/04/30/whats-new-in-gutenberg-10-5-28-april/\"><strong>What’s New In Gutenberg 10.5</strong></a>. 15 new block patterns made it into the release and template editing is now also available for classic themes. For the latter, exercise optimistic caution should you use the Gutenberg plugin in productions. Many, many more changes came to the block-editor. <em>Grzegorz Ziolkowski and I recorded our take on it for the <a href=\"https://gutenbergtimes.com/podcast\">Gutenberg Changelog</a> podcast yesterday, and it should come to your favorite pod catcher over the weekend. </em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><a href=\"https://twitter.com/justintadlock\"><strong>Justin Tadlock</strong> </a>shared his experience in his post <a href=\"https://wptavern.com/gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-patterns\"><strong>Gutenberg 10.5 Embeds PDFs, Adds Verse Block Color Options, and Introduces New Patterns</strong></a></p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<h2>Block Pattern Directory</h2>\n\n\n\n<p>Speaking of Block Patterns, <strong><a href=\"https://twitter.com/ryelle\">Kelly Choyce-Dwan</a></strong> posted the <strong><a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">Block Pattern Directory Update</a> </strong>from the Meta team. She invites you to follow along on the site that is a red-hat zone for now, but it already gives you a good idea on how it is going to work. Check it out on<a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\"> wordpress.org/patterns</a>. The patterns are arranged in squares in five categories: <a href=\"https://wordpress.org/patterns/pattern-categories/buttons/\">Buttons</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/columns/\">Columns</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/gallery/\">Gallery</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/header/\">Header</a>, <a href=\"https://wordpress.org/patterns/pattern-categories/text/\">Text</a>. You click on the square to see a details page with a larger representation and a button “Copy Pattern” or add them to your &#8216;Favorites&#8217;. Although, Kelly wrote that the copy button doesn’t work yet, I quickly tested it, and you can just paste it into your next post, even if you are not in code edit mode.&nbsp;</p>\n\n\n\n<p>The meta team is now working on the process for WP.org users to submit patterns into the directory, and the accompanying automated evaluation and moderation feature. WordPress users will be able to find block patterns right from the block editor inserter and add them directly to their post or pages. </p>\n\n\n\n<p>Ultimately, the core block patterns will be removed from Gutenberg and made available through the Pattern directory only.  </p>\n\n\n\n<h2>Testing Full-Site editing: The outreach program</h2>\n\n\n\n<p>The Full-Site Editing Outreach program is in full swing.. Anne McCarthy and dozens of people contribute to WordPress by testing the new feature. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/page-template-editor-for-wordpress-5-8-videos-and-plugins-weekend-edition-166/\">Since the last Weekend Edition</a>, there were quite a few updates coming out of the program. </p>\n\n\n\n<p>🗓️ <strong><a href=\"https://make.wordpress.org/test/2021/04/22/upcoming-fse-outreach-program-schedule/\">Upcoming FSE Outreach Program Schedule</a> &#8211; Synch your calendars! </strong>😂</p>\n\n\n\n<p>For anyone who wants to learn more about the program, Anne McCarthy was a guest on the WordPress Jukebox podcast last month. <strong><a href=\"https://twitter.com/wpbuilds\">Nathan Wrigley</a>,</strong> host of the revived WPTavern podcast <strong>Jukebox</strong>, discussed with her <a href=\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress\"><strong>How Full Site Editing Will Impact WordPress</strong></a> and why the program and its participants are an essential part for a successful implementation of the new features. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In <a href=\"https://make.wordpress.org/test/2021/04/20/fse-program-building-a-restaurant-header-summary/\"><strong>Building a Restaurant Header Summary</strong></a> you can read a curated list of outcomes and finding from the 4th Call for Testing. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In this week&#8217;s <a href=\"https://make.wordpress.org/test/2021/04/29/hallway-hangout-discussion-on-full-site-editing-issues-prs-designs-29-april/\"><strong>Hallway Hangout: Discussion on Full Site Editing Issues/PRs/Designs</strong></a>, participants in the FSE program talked through the findings of the last call for testing with <strong>Anne McCarthy</strong>, <strong>Marcus Kazmierczak</strong> and <strong>Sabrina Zeidan</strong>. Using screen sharing and video the groups was able to discuss some of the interface challenges much easier than when just reading through a blog post. This was already the second of this Video chats. The <a href=\"https://make.wordpress.org/test/2021/04/08/hallway-hangout-discussion-on-full-site-editing-issues-prs-designs-8-april/\">first Hallway Hangout chat took place on April 8th, 2021</a>, when Caroline Nymark, Paal Joachim Ramdahl, and Olga Gleckler joined Anne and Marcus. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>You have until May 5th, 2021 to participate and comment on <strong><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Testing Call #5: Query Quest</a>.</strong></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you have questions that still need answers, Anne McCarthy<a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\"> </a><strong><a href=\"https://make.wordpress.org/test/2021/04/28/fse-program-bring-your-questions-round-two/\">started the second round</a> of collecting questions</strong> to bring back to the team and get you answers. Bookmark this page, so you can open it quickly when you have another question. If you want to read up on the answers for the previously submitted 47 questions, <a href=\"https://make.wordpress.org/test/tag/fse-answers/\">follow this link to previous posts of Q &amp; A </a></p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Developing for Gutenberg </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/jemjabella\">Jem Turner</a></strong>, a reluctant adopter of Gutenberg, has <a href=\"https://www.jemjabella.co.uk/2021/6-things-i-do-to-make-gutenberg-development-easier/\"><strong>six things she does to make developing websites with Gutenberg easier.</strong></a> It&#8217;s a great mix of developer and content creator processes. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Will Morris</strong> posted <strong><a href=\"https://torquemag.io/2021/04/custom-gutenberg-block/\">How to Create a Custom Gutenberg Block in WordPress (In 3 Steps)</a> </strong>on the Torque Magazine site and helps you how to extend your WordPress site with the <a href=\"https://wordpress.org/plugins/genesis-custom-blocks/\">Genesis Custom Blocks</a>,  one of the few <em>&#8216;almost&#8217;</em> #nocode block building tools.  </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Do The Woo podcast</strong>, co-hosted by <a href=\"https://twitter.com/bobWP\"><strong>Bob Dunn</strong></a> and <a href=\"https://twitter.com/ifyouwillit\"><strong>Mendel Kurland</strong></a>, discussed <a href=\"https://dothewoo.io/wordpress-core-and-blocks-with-grzegorz-ziolkowski/\"><strong>WordPress Core and Gutenberg Blocks with Grzegorz (Greg) Ziolkowski. </strong></a> They talked about the opportunities of working with blocks in an eCommerce context and beyond full-site editing.&nbsp;<a href=\"https://twitter.com/gziolo\">Grzegorz</a> explained how micro templates and blocks are the building material for more complex implementation and the advantages of the standardized interface for users and extenders in WordPress Core.&nbsp;</p>\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p>Speaking of WooCommerce: <strong>Jamie Marsland</strong> shared his <a href=\"https://www.youtube.com/watch?v=FQbn-TRt2pk\"><strong>Top 10 Blocks for WooCommerce</strong></a> &#8211; Plugins mentioned: </p>\n\n\n\n<ul><li><a href=\"https://wordpress.org/plugins/woo-gutenberg-products-block/\">WooCommerce Blocks</a></li><li><a href=\"https://www.pootlepress.com/storefront-blocks/\">Storefront Block</a></li><li><a href=\"https://wordpress.org/plugins/woobuilder/\">WooBuilder</a></li></ul>\n\n\n\n<h2>New Era for WordPress Themes </h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/andersnoren\">Anders Noren</a></strong>, Swedish theme developer and co-author of the WordPress Twenty-Twenty theme, sees <a href=\"https://andersnoren.se/a-new-era-for-wordpress-themes/\"><strong>A New Era for WordPress Themes</strong></a>. In 2021,  we will &#8220;see the introduction of the most significant change to WordPress themes since the modern theme system was released in&nbsp;<a href=\"https://wordpress.org/news/2005/02/strayhorn/\">version 1.5</a>&nbsp;of WordPress, 16 years ago.&#8221;. He has great explanation and insights, and embraces the new era and is happy about the slow release this time around, so theme developers can get familiar with the new tools. &#8220;Developers will have plenty of time to create fully block-based themes by the time the Site Editor and Global Styles are released in WordPress 5.9. And no excuses if they don’t.&#8221; Last month, Anders released a new free theme called <a href=\"https://andersnoren.se/teman/eksell-wordpress-theme/\"><strong>Eskell</strong></a>. Read <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">Sarah Gooding&#8217;s review on  WordPress Tavern.</a> </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>The 47th edition of the <a href=\"https://make.wordpress.org/themes/2021/04/30/gutenberg-themes-week-of-apr-26-2021/\"><strong>Gutenberg + Themes roundup</strong></a> by <strong><a href=\"https://twitter.com/one_maggie\">Maggie Cabrera</a></strong> from the Themes team, lists all FSE related issues and PRs from the Gutenberg repository that need your attention, your opinion and your comments. The post also provides a list of resources if you are just now getting into block-based theme development. One issue caught my eye specifically: <a href=\"https://github.com/WordPress/gutenberg/issues/31124\"><em>Presets used in patterns: register them as user presets?</em></a> in it Andre explores a way how block pattern could be used across a theme change and still keep their styling. Reading through the comments from the Gutenberg contributors, it&#8217;s clear that there are a few questions still unanswered, when users can change colors. This applies to a few other elements of the themes and blocks, when classes don&#8217;t survive a theme change, and designs in navigation or group blocks lose their background colors. There are quite a few of these discussions that need your input and ideas. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his latest post, <a href=\"https://twitter.com/ChrisWiegman\"><strong>Chris Wiegman</strong></a> walks us through the process of reducing WordPress themes to the bar minimum and still be able to render blocks. <strong><a href=\"https://chriswiegman.com/2021/04/creating-a-minimal-wordpress-theme-in-the-era-of-gutenberg/\">Creating A Minimal WordPress Theme In The Era Of Gutenberg</a>.</strong> This <a href=\"https://github.com/chriswiegman/chriswiegman-theme\">minimalistic and sustainable theme is available on GitHub</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you are looking to share your future block-based theme in the WordPress.org repository, <strong><a href=\"https://twitter.com/carolinapoena\">Carolina Nymark</a></strong> has a proposal for you: <a href=\"https://make.wordpress.org/themes/2021/04/22/removing-blockers-for-block-themes/\"><strong>Removing blockers for block themes</strong></a> on the Themes team. I am quite surprised that it hasn&#8217;t received any feedback from the community yet. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In his post <a href=\"https://wptavern.com/themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen\"><strong>Themes Set Up for a Paradigm Shift, WordPress 5.8 Will Unleash Tools To Make It Happen</strong></a> Justin Tadlock took a tour around the upcoming WordPress 5.8 features and took them for a spin and a first evaluation.  &#8220;Themes are not going the way of the dinosaur. All of that overly complex PHP code work necessary in the past might just be. The shift is putting themes back into their proper place: design. Previously available tools such as patterns and styles coupled with the new pieces like&nbsp;<code>theme.json</code>&nbsp;and template-related blocks will be the backbone of the new system. It is all starting to come together.&#8221; he concluded. </p>\n\n\n\n<p>As a former Theme developer, <strong>Justin Tadlock</strong> keeps his ear to the ground of theme development. I very much appreciate the tremendous effort he puts into his Theme reviews. I learn something new every time.</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/churel-is-a-colorful-and-minimalist-block-ready-wordpress-theme\">Churel Is a Colorful and Minimalist Block-Ready WordPress Theme</a></li><li><a href=\"https://wptavern.com/with-some-hits-and-misses-the-guten-blog-wordpress-theme-has-potential\">With Some Hits and Misses, the Guten Blog WordPress Theme Has Potential</a></li></ul>\n\n\n\n<h2>WordPress Events</h2>\n\n\n\n<p><strong>10 &#8211; 14 May 2021</strong><br /><a href=\"https://pagebuildersummit.com/\"><strong>Page Builder Summit 2021</strong></a><br />Gutenberg is part of it with the following sessions: </p>\n\n\n\n<ul><li>How to turn Gutenberg into a Page Builder with Stackable w/ <strong>Benjamin Intal</strong></li><li>Don’t Compete with Gutenberg &#8211; Embrace It w/ <strong>Danielle Zarcaro</strong></li><li>Google&#8217;s Core Web Vitals &#8211; Get Green With Gutenberg w/ <strong>Jake Pfohl</strong></li><li>Creating newsletters in the Gutenberg block editor w/ <strong>Lesley Sim</strong></li><li>Building Fast, Block Based Landing Pages with <strong>Mike Oliver</strong></li></ul>\n\n\n\n<p><strong>May 24-28, 2021</strong><br /><a href=\"https://wordsesh.com/\"><strong>WordSesh 2021</strong></a></p>\n\n\n\n<p><strong>June 7 &#8211; 9th, 2021</strong><br /><strong><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe</a></strong><br />A virtual event and contributor day. <a href=\"https://europe.wordcamp.org/2021/call-for-sponsors/\">Call for Sponsors is open.</a></p>\n\n\n\n<p><strong>June 20 &#8211; 26</strong><br /><strong><a href=\"https://japan.wordcamp.org/2021/\">WordCamp Japan</a></strong><br /><em>The schedule has been posted. Most sessions will be in Japanese, with exceptions, I think&#8230; </em></p>\n\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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, 01 May 2021 22:15: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s: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:76:\"WPTavern: Alpha Particle and Flowspoke Acquire Kanban for WordPress for $15K\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115839\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"https://wptavern.com/alpha-particle-and-flowspoke-acquire-kanban-for-wordpress-for-15k?utm_source=rss&utm_medium=rss&utm_campaign=alpha-particle-and-flowspoke-acquire-kanban-for-wordpress-for-15k\";s: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:5586:\"<p>Digital consultancies <a href=\"https://alphaparticle.com/\">Alpha Particle</a> and <a href=\"https://flowspoke.com/\">Flowspoke</a> have <a href=\"https://kanbanwp.com/article/under-new-management/\">acquired</a> the <a href=\"https://wordpress.org/plugins/kanban/\">Kanban for WordPress</a> plugin, a tool that puts Kanban boards into the admin to measure progress on a goal. The plugin is used for agile project management, sales tracking, editorial scheduling, and other planning purposes.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>WordPress developer <a href=\"https://gelform.com/\">Corey Maass</a> created Kanban for WordPress in 2015 but struggled to market it enough to grow beyond 2,000 users. In 2020, he saw Alpha Particle CTO Keanan Koppenhaver post on Twitter that he was looking to acquire a plugin business and jumped at the chance to sell Kanban for WordPress. Koppenhaver wanted a plugin that already had $1k-$12K annual revenue and wasn&rsquo;t tied in with Beaver Builder, Elementor, Divi, or any other page builders. Integration with WooCommerce or other third-party software was a plus.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">&ndash; A business selling a WordPress plugin or a collection of plugins<br /><br />&ndash; Between $1k and $12k annual revenue, ideally recurring<br /><br />&ndash; Ideally runs as its own entity, or has its own account with any payment processors<br /><br />(2/4)</p>&mdash; Keanan Koppenhaver (@KKoppenhaver) <a href=\"https://twitter.com/KKoppenhaver/status/1318224539663421444?ref_src=twsrc%5Etfw\">October 19, 2020</a></blockquote>\n</div>\n\n\n\n<p>&ldquo;I&rsquo;d burned out on the project so I&rsquo;d thought about selling for a while but didn&rsquo;t do anything about it,&rdquo; Maass said. &ldquo;When Keanan posted he was looking, I inquired because I&rsquo;d met him and knew he was solid. After a chat I knew he was the right buyer because his approach to WordPress was similar to mine &ndash; not too detached, not too dogmatic.&rdquo;</p>\n\n\n\n<p>Maass had monetized Kanban for WordPress for the past five years through a $149/year pro version (the most popular price point) and a $499.00 lifetime support license. He said revenue had peaked around $20K/ARR but had dropped to about $10K/ARR due to his minimal involvement. During his peak revenue months there were some weeks he would work 40 hours and some that he would work no hours at all.</p>\n\n\n\n<p>&ldquo;I applied the &rsquo;12-18 months of revenue as a selling price&rsquo; rule, and sold it for $15k,&rdquo; Maass said.</p>\n\n\n\n<p>He also commented on the difficulty of finding a non-technical partner in the WordPress world. Maass searched for someone to market the plugin while he concentrated on the product but never found a match:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I interviewed non-WordPress people. No luck. I&rsquo;ve found a few people in the WordPress eco-system, but most already have one more products they&rsquo;re growing. It&rsquo;s one of the quirks of the WordPress world &ndash; there are more devs than non-devs. Most everywhere else in the tech-business world, it&rsquo;s the other way around. And of course most of the success stories of WordPress are tech founders that pivoted to marketing/biz dev, which a lot of devs can&rsquo;t do, myself included.</p></blockquote>\n\n\n\n<p>The teams at Alpha Particle and Flowspoke saw potential to grow the Kanban for WordPress plugin business with their combined design, marketing, and development skills. </p>\n\n\n\n<p>&ldquo;As WordPress continues to become an even more full-featured platform, we think there&rsquo;s a demand for great applications to be built <em>inside</em> WordPress,&rdquo; Alpha Particle CTO Keanan Koppenhaver said. &ldquo;And Kanban is a perfect example of that. It&rsquo;s already proven useful for a lot of people and we want to take even more of the features from other project management tools and integrate them tightly with tools WordPress folks are already using, like the Block Editor and WooCommerce, to help add to that unified WordPress experience.&rdquo;</p>\n\n\n\n<p>Although Alpha Particle and Flowspoke already have in-house products they are working on, they wanted to acquire a business where they could immediately start experimenting.</p>\n\n\n\n<p>&ldquo;With a plugin that already has some traction, it just makes it a lot easier to try new things and get quicker feedback on new features and new ideas,&rdquo;  Koppenhaver said. &ldquo;Since there&rsquo;s already an engaged user base, we saw the opportunity to take the things we tell our clients to do with their projects and apply them to a product of our own. I think that long-term this wouldn&rsquo;t be the only one we acquire, but we&rsquo;ll be on the look out for the next right opportunity. We&rsquo;re excited about the long-term roadmap we&rsquo;ve laid out for Kanban, too, and ready to put in the time to focus and make that vision a reality.&rdquo;</p>\n\n\n\n<p>Alpha Particle and Flowspoke plan to release the long-awaited version 3 of Kanban for WordPress in the near future. It has been completely redesigned and rewritten from the ground up. They will also be building in tighter integration with WordPress where users will be able to link posts to cards and automatically have cards moved to the &ldquo;Published&rdquo; column after publishing. Kanban for WordPress already has integrations for Gravity Forms and Ninja Forms but the team has more third-party integrations on the roadmap and is also taking suggestions.</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, 30 Apr 2021 17:14: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: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:34:\"BuddyPress: BuddyPress 8.0.0-beta1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=318272\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://buddypress.org/2021/04/buddypress-8-0-0-beta1/\";s: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:4338:\"<p><strong>BuddyPress 8.0.0-beta1</strong>&nbsp;is now available for testing! <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f941.png\" alt=\"🥁\" class=\"wp-smiley\" /></p>\n\n\n\n<p>Please note the plugin is&nbsp;<strong>still in development</strong>, so we recommend running this beta release on a&nbsp;<strong>testing site</strong>.</p>\n\n\n\n<p>You can test BuddyPress 8.0.0-beta1 in 4 ways :</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.8.0.0-beta1.zip\">Download the beta here (zip file)</a>.</li><li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p><strong>The current target for final release is June 2, 2021. That’s just five weeks away, so your help is vital to making sure that the final release is as good as it can be.</strong></p>\n\n\n\n<p>Please note BuddyPress 8.0.0&nbsp;<strong>will require at least WordPress 4.9</strong>.</p>\n\n\n\n<p>We repeat it each time we announce a beta release : <strong>testing for bugs is VERRRY important</strong>. Please make sure to test this pre-release using a testing configuration which is very close to the one you are using in production. If you find something unusual (aside from the great new features below), please report it on <a href=\"https://buddypress.trac.wordpress.org/newticket\">BuddyPress Trac</a> or post a reply to <a href=\"https://buddypress.org/support/topic/buddypress-8-0-0-beta1/\">this support topic</a>.</p>\n\n\n\n<p>Here are the three hottest 8.0.0 features to pay close attention to while testing (Check out&nbsp;<a href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=8.0.0\">this report</a>&nbsp;on Trac for the full list).</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f46b.png\" alt=\"👫\" class=\"wp-smiley\" /> BP Members Invitations</h2>\n\n\n\n<p>Whether you allow open registration or not you can use this <a href=\"https://buddypress.trac.wordpress.org/ticket/8139\">opt-in feature</a> to let your community grow itself. Once enabled from the BuddyPress Options Administration screen, your members will be able to invite their network of friends, co-workers, students, developers, well possibly anyone, to join your site <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f4c8.png\" alt=\"📈\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" /> Selectable xProfile sign-up fields</h2>\n\n\n\n<p>Until now, only the Primary group of xProfile fields was displayed on the registration form of your community. 8.0.0 gives you the <a href=\"https://buddypress.trac.wordpress.org/ticket/6347\">freedom to choose</a> any field from any field group to add to your site&#8217;s registration form <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f4ab.png\" alt=\"💫\" class=\"wp-smiley\" />.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2><span class=\"dashicons dashicons-wordpress-alt\"></span> Include WordPress user fields in your BuddyPress member profiles</h2>\n\n\n\n<p>8.0.0 introduces <a href=\"https://bpdevel.wordpress.com/2021/03/24/wordpress-xprofile-field-types/\">2 new xProfile Field types</a>. The WP Textbox can be used to include the user&#8217;s first name, last name, Website link or any potential WP contact methods. With the WP Biography field you can display the Biographical Info in the group of xProfile fields of your choice <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f64c.png\" alt=\"🙌\" class=\"wp-smiley\" /> .</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>And so much more such as the new <a href=\"https://buddypress.trac.wordpress.org/ticket/8428\">Welcome BP Email</a>, the <a href=\"https://buddypress.trac.wordpress.org/ticket/4747\">terms of use acceptance profile field</a>, improvements to the BP Nouveau template pack &amp; to the BP REST API… </p>\n\n\n\n<p>We&#8217;ll tell you more about all these soon into our <a href=\"https://bpdevel.wordpress.com/category/development-notes/8-0/\">developer notes</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Apr 2021 23:30: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:12:\"Mathieu Viet\";s: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:97:\"WPTavern: Gutenberg 10.5 Embeds PDFs, Adds Verse Block Color Options, and Introduces New Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115767\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-patterns?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-patterns\";s: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:6495:\"<p class=\"has-drop-cap\">I reach over to grab my phone to check the time. I am debating whether I should stay awake and watch one more episode of <em>The Walking Dead</em> &mdash; it would be my fourth, maybe fifth, binge of the series.</p>\n\n\n\n<p>11:12 pm.</p>\n\n\n\n<p>I noticed that Slack was blowing up my phone. I had it on silent, so I had to catch up. One message stood out above all the rest:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>No matching template found.</p></blockquote>\n\n\n\n<p>That was the front page of the Tavern last night as it updated to Gutenberg 10.5. I knew it was related to the Full Site Editing (FSE) changes in the latest release. I had seen that error enough in local testing and needed no more information to know what to do &mdash; deactivate the plugin. Then, I could get back to my internal debate of staying up for an hour past my bedtime for TV.</p>\n\n\n\n<p>Sometimes, such is life on the bleeding edge, or at least life when running the fortnightly releases of the Gutenberg plugin with automatic updates enabled. It presents a challenge or two or a hundred. I had let my guard down after a smooth 10.4 release, and I knew better. After several prior releases of fixing issues on the backend, the development team gave me a break. It was almost as if they were saving up for something big.</p>\n\n\n\n<p>Gutenberg now explicitly declares that anyone running the plugin is on a block-based theme, despite whether their theme actually supports block templates. It should generally fall back gracefully if there none. This seems to be centered on a change that allows <a href=\"https://github.com/WordPress/gutenberg/pull/30438\">classic users to create custom block templates</a>. However, with the plugin activating a &ldquo;theme-supported&rdquo; feature automatically, it triggers a chain of events that overrides the template system. Any theme with a custom template hierarchy could break. I created a <a href=\"https://gist.github.com/justintadlock/74fa7c61c692423cc1fcefd9a0ab8e5f\">code snippet on Gist</a> if anyone else runs into the issue and needs to deactivate &ldquo;block templates&rdquo; support.</p>\n\n\n\n<p>I like that we run the plugin. Daily usage means that we can effectively write about it &mdash; a practice-what-you-preach sort of thing.</p>\n\n\n\n<p>Sometimes, Gutenberg, you break my heart. You will find few enthusiastic cheerleaders more loyal than me. I believe in the project, but some days, you try your best to make it rough.</p>\n\n\n\n<p>But, all is well. There are some exciting things about this release.</p>\n\n\n\n<p>Template-editing mode is now enabled for classic themes. Despite this breaking the Tavern theme, it is a feature that I look forward to as a necessary transitional feature toward FSE. Another quick highlight is the work the team has done in making the <a href=\"https://github.com/WordPress/gutenberg/pull/30248\">Columns block more accessible</a>. Each column now has a numbered label that is read aloud via screen-readers.</p>\n\n\n\n<h2>Embedded PDFs</h2>\n\n\n\n<img />Inline-embedded PDF.\n\n\n\n<p class=\"has-drop-cap\">A decade ago, I had one theme user in particular who needed to embed PDFs. As a young developer, it was just the sort of challenge I needed to build for an audience of one out of 100,000+. So, within the day, I wrapped up a solution similar to what the Gutenberg team did in version 10.5. It is nice to see WordPress finally catching up.</p>\n\n\n\n<p>Only the block system makes such embedding much nicer. Drag a <a href=\"https://github.com/WordPress/gutenberg/pull/30857\">PDF into the content canvas</a> and let it work its magic.</p>\n\n\n\n<p>There is one caveat: many mobile phones and tablets will not show an embedded PDF. The File block does make a note of this. It also allows users to disable the inline embed and control the height.</p>\n\n\n\n<p>This feature offers the best of both worlds. Visitors can read the PDF directly on the page, and they can also click the download button to snag a copy of the file.</p>\n\n\n\n<h2>Color Options for the Verse Block</h2>\n\n\n\n<img />Verse block with custom colors.\n\n\n\n<pre class=\"wp-block-verse\">Poets can rejoice at last\nThe time of the Verse being a second-class block lies in the past\nUsers can add subtle colors or those that clash\nA tweak here or there can give their words the flash\nthey need\nto breathe\nto exceed, all expectations\nText, background, and links are fair game\nUnreadable if they were all the same\nA splash of color is what it takes to tame\nthe words&hellip;</pre>\n\n\n\n<p>I will stop there and let the pros handle actual poetry.</p>\n\n\n\n<p>Gutenberg 10.2 added the standard block color <a href=\"https://github.com/WordPress/gutenberg/pull/27736\">options to the Verse block</a>. Perhaps all blocks will get the same treatment down the road. I am still waiting on colors for the Quote block too.</p>\n\n\n\n<h2>New Block Patterns</h2>\n\n\n\n<p class=\"has-drop-cap\">The latest plugin update removes all 10 of the default WordPress block patterns and replaces them with <a href=\"https://github.com/WordPress/gutenberg/pull/29973\">15 fresh designs</a>. The new set is an attempt to better showcase the editor&rsquo;s capabilities.</p>\n\n\n\n<img />Testing new block patterns.\n\n\n\n<p>For end-users who might be worried about losing their old patterns, this will not affect your content. Because patterns are merely predefined sets of blocks, it is the blocks rather than the patterns that actually get inserted into the content canvas and saved.</p>\n\n\n\n<p>The removal of old patterns with replacements of new ones was always a part of the plan. Web design changes over time, and the patterns system allows core developers to keep pace. Perhaps the old patterns will live in the <a href=\"https://wptavern.com/pattern-directory-targeted-to-launch-with-wordpress-5-8\">upcoming block directory</a> for those users who still want them.</p>\n\n\n\n<p>Gutenberg 10.5 also introduces a few <a href=\"https://github.com/WordPress/gutenberg/pull/30763\">opinionated Query block patterns</a>: Post Grid, Large Title, and Offset Posts. The ultimate goal is to provide an array of options for users as a starting point.</p>\n\n\n\n<img />&ldquo;Large title&rdquo; Query block pattern.\n\n\n\n<p>There is still an open call for the designers to pitch in, <a href=\"https://wptavern.com/calling-all-themers-design-the-next-round-of-query-block-patterns\">contributing custom Query patterns</a> to the project. It is an opportunity to give back that requires almost no JavaScript or PHP programming knowledge.</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, 29 Apr 2021 16:41: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:14:\"Justin Tadlock\";s: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:80:\"WordCamp Central: Making a great online conference experience at WordCamp Prague\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3138356\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://central.wordcamp.org/news/2021/04/29/making-a-great-online-conference-experience-at-wordcamp-prague/\";s: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:14783:\"<p>My name is <a href=\"https://profiles.wordpress.org/zaantar/\" target=\"_blank\" rel=\"noreferrer noopener\">Jan</a>, I am a <a href=\"https://toolset.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Toolset</a> developer at <a href=\"https://onthegosystems.com/\">OnTheGoSystems</a>. For the past several years, I have been actively involved in the Czech WordPress community. On Saturday 27th of February 2021, we held an online conference <a href=\"https://prague.wordcamp.org/2021/english\" target=\"_blank\" rel=\"noreferrer noopener\">WordCamp Prague 2021</a>.</p>\n<p>Switching an interactive, in-person event to the online format while keeping most of its magic has been difficult but certainly not impossible.</p>\n<p>As this year’s lead organizer, I want to share pieces of this sometimes arduous but extremely rewarding journey, together with some crucial ingredients that made it a success beyond our wildest expectations.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/wordcamp_prague_logo-2021-1.png\"><img /></a></p>\n<p>Let’s just face the truth: If I knew what I was actually getting into, I wouldn’t have said yes. But I am deeply grateful that I didn’t know. Even after being on the team two years prior to this one, the experience of being a lead organizer is pretty much non-transferable.</p>\n<p>Even so, I — a backend software developer with questionable social and team management skills — was very reluctant about taking such a huge responsibility.</p>\n<p>One of the things that convinced me — besides the fact that, apart from the then lead organizer, nobody else from our team was willing to take the role — was that this time, we were going to do an online conference.</p>\n<p>This unique situation meant two things that removed most of my anxiety. First, nobody knew what to expect from an <em>online</em> WordCamp Prague: It was a completely new thing, an experiment, even. Let’s do our best and see what happens.</p>\n<p>Second, the budget was no longer nightmare-inducing, compared to previous years (especially the fact that we were never sustainable without sponsors, and every time, we worried if we would manage to secure enough funding).</p>\n<p>With the pandemic foreseeably about to wreak havoc on our small country, with all the uncertainty, and with me in strict isolation until a vaccine is available, a fully online event was the only realistic way we could actually make it happen.</p>\n<p>And so we did.</p>\n<p>Specifically, by “we”, I mean the fourteen of us: My fellow WordCamp organizers, most of whom have been on the team for years (many of them previous lead organizers), some new faces, and a small recording studio owner who demonstrated superhuman patience during the whole process. Even with this amount of people, it took considerable effort, and without the dedication, good teamwork, and communication, this wouldn’t have worked at all.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/Vyber_200-1-1.png\"><img /></a></p>\n<p><em>Part of the WordCamp Prague 2021 organizer team at the closing speech</em></p>\n<h1>The Recipe</h1>\n<p>My goal since the very beginning was to make it very interactive and to emulate the experience of a physical conference — where, as everyone who ever attended one will testify, the true magic of WordCamps happens — as closely as possible.</p>\n<p>A great source of inspiration was WordCamp Europe 2020, which had to be hastily switched to an online version just a couple of months before (and I deeply empathize with its organizers, it must have been an extremely hard blow for them, much harder than for us who have “just” booked a hotel in Porto or already bought non-refundable airline tickets). I got some ideas from there that we copied and also some things I knew I wanted to avoid.</p>\n<p>So, here’s our “online WordCamp recipe”, if you will:</p>\n<h2>A local target audience</h2>\n<p>From the get-go, we decided to explicitly focus on the Czech and Slovak audience, and we didn’t accept any English talks whatsoever (some of the speakers who applied will be talking at our<a href=\"https://www.meetup.com/naswp-cz/\"> monthly meetups</a>, though).</p>\n<p>The reasoning behind this was what I call <em>online conference fatigue</em>. Attending an English-speaking WordPress event is very easy these days, with WordCamps or meetups happening every couple of days or weeks. There’s nothing wrong with that, of course.</p>\n<p>But, considering that many of our fellow citizens aren’t fluent English speakers — the language barrier is still rather high, unfortunately — and that we were told there are no other WordCamps planned in the Czech Republic or Slovakia for the upcoming year, we found ourselves in a unique position to kind of fill this niche (side note: Czechs and Slovaks understand each other very well) and to <em>effectively</em> add some value to the WordPress ecosystem in our region.</p>\n<p>In the end, I believe this was one of the main reasons for such a high attendance (over 650 registered attendees, 595 of which showed up).</p>\n<h2>A proper online conference platform</h2>\n<p>WCEU — and other WordCamps as well — went with a combination of YouTube Live or Crowdcast for presentation tracks and Zoom for networking or virtual sponsor booths. While that is affordable, relatively easy, and accessible (and once again: I cannot blame WCEU for this choice due to the time pressure), I was not entirely satisfied. The result felt a bit confusing, constantly switching between browser tabs or different applications.</p>\n<p>We put a lot of effort into finding a good platform, and we eventually settled on <a href=\"https://hopin.com/\">Hopin</a>. It wasn’t without its quirks and little obstacles, it <em>definitely</em> wasn’t for free. But it worked great for the attendees. It allowed us to have a main “stage”, networking rooms, sponsor booths, even the schedule all in one place. It was immersive.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/Vyber_202.png\"><img /></a></p>\n<p><em>Front page of the event on Hopin</em></p>\n<h2>One track only</h2>\n<p>I have to admit that the two-track experience of WCEU (which also meant two networking rooms on Zoom) was pretty overwhelming. I can be an information sponge and I had a hard time deciding what I want to see or where I want to be the most.</p>\n<p>Also, we didn’t have enough resources to effectively run multiple tracks for WordCamp Prague. To cover one track for a whole day, you need at least two hosts and then two other teammates who will stay in the networking room (we called ours “foyer”). We were very lucky to find our two hosts and we decided to go for quality instead of quantity.</p>\n<p>From the feedback we received, this was a good choice. Even with keeping presentations to only one track, many people still struggled with wanting to be both in the main track and in the foyer at the same time.</p>\n<h2>Pre-recorded talks, live Q&amp;A</h2>\n<p>One of those things that I truly liked about WCEU — and that we’ve easily agreed upon — was that our speakers’ talks would be pre-recorded and then they would join together with a host for a live Q&amp;A session.</p>\n<p>With fourteen speakers, the risk that <em>something somewhere</em> would go wrong was considerable. This way, the worst that could happen would be losing the Q&amp;A.</p>\n<p>The approach had some unexpected secondary benefits too: Our hosts could see the talk in advance and prepare for the Q&amp;A much better. We knew when it would end, so we could plan our timetable accordingly. The speakers knew they really had to submit their completed talk a couple of days before the event. And so on.</p>\n<h2>Networking with the speaker afterward</h2>\n<p>If I had to pick one key aspect that made the most difference, this would be it. Also inspired by WCEU, after every talk (ca. 20min + 5min for Q&amp;A), the speaker was invited to join the foyer (networking room) where the attendees could catch up with them either by asking further questions in the chat or by connecting with their audio and video and talking to them directly.</p>\n<p>This ended up being very popular, there were always a couple of dozen people in the foyer. Sometimes, the conversation had to continue in a newly created room after the following speaker had finished their talk and joined in as well.</p>\n<p>We had two of our team members always present, ready with some of their own questions for the speaker, to help start the conversation if needed.</p>\n<h2>Virtual sponsor booths with schedule</h2>\n<p>The highest two tiers of our sponsor program included a virtual sponsor booth. We suggested the sponsors pick one hour on the schedule and hold their presentation then, instead of having to attend for the whole day.</p>\n<p>It was also practical for the attendees, I believe, to know what’s the best time to visit and ask questions.</p>\n<p>When not active, the virtual booth was in a “presentation” mode with a sponsor’s slideshow on repeat.</p>\n<h2>Happiness bar and afterparty</h2>\n<p>No WordCamp is a proper WordCamp without these two things.</p>\n<p>We implemented the happiness bar as another virtual room (same as the foyer) and two to three volunteers were always present to answer any attendees’ questions about their WordPress sites.</p>\n<p>As for the afterparty, we created four different “tables” – virtual rooms. One of them also for English speakers, since some of our sponsors’ representatives wanted to attend as well.</p>\n<p>To my surprise, two of those tables stayed active for a pretty long time, and when we concluded the afterparty around 10 PM, there were still about twenty, thirty people around. Perhaps we’ve become more used to online socializing because of the pandemic endless lockdowns, but some of the feedback we received went along the lines of “it felt almost like a physical WordCamp.”</p>\n<h2>Interviews with speakers</h2>\n<p>In years past, before the conference itself, we usually did write interviews with speakers and then shared the articles on our social media to bring attention to the event. It was usually quite difficult to produce these interview articles: The speakers rarely found enough time for this and we often got late submissions or content that was not wordy enough. Then, the text had to be polished and reviewed before publishing.</p>\n<p>This year, instead, someone had the brilliant idea to just do live interviews via Zoom. The advantages were numerous: It was fast to make, we immediately had the final product (videorecording) with minimal post-processing, and it was also fast to view and more attractive on social media than a long text.</p>\n<h2>A strong, positive organizer team</h2>\n<p>I can’t stress enough how well my team managed to self-organize and how dedicated the vast majority of us were to deliver a great result. Even under time pressure, we’ve always done our best to keep the spirit up.</p>\n<p>After all, we should all remember, it’s a WordCamp, a volunteer-organized event that should be interesting and fun, not a question of life and death. Everything doesn’t always have to be perfect. It’s important to keep that in mind.</p>\n<p><a href=\"https://central.wordcamp.org/files/2021/04/image.png\"><img /></a></p>\n<p><em>WordCamp Prague 2021 organizers</em></p>\n<h1>Looking back</h1>\n<p>In retrospect, the whole experience was intense, difficult at times, but ultimately rewarding beyond expectation.</p>\n<p>I find myself struggling to compare it with previous years. The physical event is really something else, and my perspective was dramatically shifted in my new role.</p>\n<p>But I will say this: We keep building on the work of previous years. Be it our visual presence, the experience of individual team members with their agenda, or the way we organize and carefully handpick and balance the content of the whole event. It seems that we manage to move the event forward every year, and that’s ultimately what matters.</p>\n<p>The most challenging part was time management — no surprise there. Because of the pandemic, everyone was kind of busy with their lives and we started seriously organizing only towards the end of September. In combination with the already somewhat problematic timing, we set ourselves up for quite a wild ride.</p>\n<p>If you want to do the event before the main conference season, that also means that you have less than two months from confirming speakers to make everything happen. Practically nothing gets done during December, and the speakers will not plan that far ahead as to apply in November already.</p>\n<p>This timing is kind of set in stone for us and we will have to handle everything that we can beforehand so that the run to the finish line is without unnecessary obstacles.</p>\n<p>Also, with my limited experience, I would say that organizing a team of — albeit very motivated — volunteers who have different daily jobs is quite different from any sort of project management at work. The primary occupation or other things often have taken precedence over WordCamp and can easily mess up the team’s schedule in a bad way. That’s why we always have to strive for asynchronous communication.</p>\n<h1>Looking forward</h1>\n<p>And what’s next? I might apply to lead the next year as well, especially if my teammates decide to continue as well. The idea of starting with a physical event organization around May feels downright ridiculous at this point because of the situation in our country. And since I already have experience with leading an online event, I might as well exploit it.</p>\n<p>For the next year, I want to again iterate on our know-how, keep what has worked, and replace the things that didn’t — simply, to move the whole project a couple of steps forward.</p>\n<p>Most importantly, my great desire is to make the preparations run smoothly, do things in advance, reduce the amount of stress for the whole team.</p>\n<p>Apart from that, we’ll be also focusing on monthly <a href=\"https://www.meetup.com/naswp-cz/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Pivo meetups</a> and other activities of the community, but that is a topic for another time.</p>\n<p><em>If you have any comments or questions, I invite you to <a href=\"mailto:jan.stetina@naswp.cz\">reach out to me</a>.</em></p>\n<p><img class=\"aligncenter\" src=\"https://onthegosystems.com/wp-content/uploads/2021/03/cropped-wapuuking-1024x724-2.png\" alt=\"\" /></p>\n<p><em>WordCamp Prague mascot, The Wapuu King</em></p>\n<p><em>This post was originally <a href=\"https://onthegosystems.com/2021/03/making-a-great-online-conference-experience-at-wordcamp-prague/\">published</a> on <a href=\"https://onthegosystems.com\">onthegosystems.com</a>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Apr 2021 08:53:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"zaantar\";s: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:65:\"WPTavern: Pattern Directory Targeted to Launch with WordPress 5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115742\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:175:\"https://wptavern.com/pattern-directory-targeted-to-launch-with-wordpress-5-8?utm_source=rss&utm_medium=rss&utm_campaign=pattern-directory-targeted-to-launch-with-wordpress-5-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2218:\"<p>Last month WordPress contributors published the <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">initial designs</a> for the upcoming pattern directory, which will host community-submitted patterns that can be installed with one click from the block inserter in the editor. A live prototype of the work in progress is available at <a href=\"https://wordpress.org/patterns/\">wordpress.org/patterns</a>. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The previously planned masonry style, which accommodates variable thumbnail heights, has not been implemented yet. Clicking on the individual pattern reveals a live preview with a handy resizing bar for trying it out on different screen sizes. The copying and favoriting features are not yet fully working. I was able to copy and paste patterns into the editor, but the previews aren&rsquo;t yet very accurate.</p>\n\n\n\n<p>The project is clipping along and contributors are aiming to have the new directory ready to <a href=\"https://make.wordpress.org/meta/2021/04/28/block-pattern-directory-update/\">launch in tandem with the upcoming WordPress 5.8</a> release. Features planned for the first version include browsing and searching patterns, live preview of patterns, and the ability to copy the block code. Users signed into WordPress.org will be able to create and submit patterns to the directory using a set of curated images and media. They will go through a basic moderation process and patterns will be available for download directly through the block editor.</p>\n\n\n\n<p>Once the directory is launched, contributors plan to add support for internationalization, forking and iterating on patterns, expand the available media for use in pattern creation, and add a pattern browsing UI to the editor. </p>\n\n\n\n<p>WordPress 5.8 is expected to land in July 2021 with the new Query, Site Logo, and Navigation blocks, template-editing mode, and the block-based widgets screen and customizer integration. The availability of pre-made patterns will be a beneficial accompaniment to the first round of full-site editing features added to core in the next release, enhancing the basic page building experience.</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, 29 Apr 2021 04:25:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: Gravity Forms 2.5 Launches With an Overhauled UI and Focus on Accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115645\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:215:\"https://wptavern.com/gravity-forms-2-5-launches-with-an-overhauled-ui-and-focus-on-accessibility?utm_source=rss&utm_medium=rss&utm_campaign=gravity-forms-2-5-launches-with-an-overhauled-ui-and-focus-on-accessibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7327:\"<p class=\"has-drop-cap\">The Gravity Forms team formally <a href=\"https://www.gravityforms.com/gravity-forms-2-5-is-now-available-the-next-generation-of-form-building/\">announced version 2.5 of its form plugin</a> yesterday. The product, owned by Rocketgenius, promises an overhauled experience that is more in line with the core block editor. The team also wanted to put accessibility at the forefront of this release.</p>\n\n\n\n<p>The design is fresh, ditching pieces of the older WordPress UI in favor of cleaner lines and branding. The update should make current users feel like they are getting an overhauled product that still offers all the tools they are accustomed to. It should also feel more attractive to new customers.</p>\n\n\n\n<p>&ldquo;Our big push with 2.5 is to update our editor so it looks more like Gutenberg, added more enhancements to using it in the block editor as well as doing our level best to make Gravity Forms the easiest form plugin in the ecosystem to make accessible,&rdquo; said James Giroux, Community Experience Manager at Rocketgenius.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Version 2.5 Form Editor</li><li class=\"blocks-gallery-item\"><img />Version 2.4 Form Editor</li></ul>Comparison between new and old Gravity Forms editor screens.\n\n\n\n<p>While much of the new UI looks and feels like the block editor, there are differences in the user experience. Instead of a block inserter, form fields can be clicked or dragged and dropped from the right sidebar. Users more accustomed to slash commands will not be able to work directly from the content canvas. Even with the differences, building forms felt natural.</p>\n\n\n\n<p>&ldquo;The native WP editor experience is changing a lot, and things are continuing to evolve there,&rdquo; said Giroux. &ldquo;One of the things we&rsquo;ve worked really hard on with this latest release is to be as consistent as we can with our UI without being completely identical to the editor. This gives us the freedom to adapt to our users&rsquo; needs without being constrained by the timelines and development priorities of the WP editor. Our previous form editor was designed to fit in with the look and feel of the editor of the day, and I expect we&rsquo;ll continue to be influenced and shaped by what the community designs and creates for Core.&rdquo;</p>\n\n\n\n<p>Gravity Forms always carved its own path, leaping when others were still learning to crawl. Building entirely with native WordPress methods could hinder their goals, and the block system is still rapidly changing.</p>\n\n\n\n<p>&ldquo;We&rsquo;re very excited about the new UI patterns that the block editor has introduced,&rdquo; said Giroux. &ldquo;It gives us a blueprint to create with consistency that we believe will lead to better user outcomes. The legacy WordPress Dashboard was not opinionated by design. The Block Editor and now Full Site Editing workflows, however, are giving us a lot more that we can apply. This will make Gravity Forms more familiar to WordPress users, and that&rsquo;s probably the biggest way the new editing experience has shaped our approach.&rdquo;</p>\n\n\n\n<img />Forms management screen.\n\n\n\n<p>&ldquo;The Block Editor is a great tool for users,&rdquo; said Giroux. &ldquo;If we can find ways to give more functionality on a per post or per-page basis that will maintain the stability and performance that our users have come to expect, I don&rsquo;t see why we wouldn&rsquo;t move in that direction. For now, there is a lot of opportunity for us to explore the existing options available within the editor that keep development complexity to a minimum, and we&rsquo;re keen to do that and provide more value to Gravity Forms users via the block editor.&rdquo;</p>\n\n\n\n<p>On accessibility, the primary lesson the team learned is that there is no magic switch to make a site WCAG compliant. It takes a holistic approach. WordPress, themes, and plugins must each do their parts to make this path easier for users.</p>\n\n\n\n<p>&ldquo;What we have done is invest in learning as much as we can about accessibility, the challenges of accessible forms, and worked with Rian Rietveld and the team at Level Level to make creating accessible forms easier and faster,&rdquo; he said.</p>\n\n\n\n<p>Gravity Forms 2.5 introduces new tools to enable accessible forms and outputs warnings when a user is configuring a form in a way that would pose an issue. The team also has extensive <a href=\"https://docs.gravityforms.com/gravity-forms-commitment-to-accessibility/\">documentation on accessibility</a> and a <a href=\"https://www.gravityforms.com/a-guide-to-gravity-forms-2-5/\">blog post</a> covering it in the context of version 2.5.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve committed ourselves to making accessibility and accessibility testing a part of our development process,&rdquo; said Giroux.</p>\n\n\n\n<p>Outside of mentioning that the current release is the foundation going forward and excitement over new ideas, he remained tight-lipped about specific features in the pipeline for version 2.6 and beyond.</p>\n\n\n\n<h2>Competition and the Forms Market</h2>\n\n\n\n<img />Extensions from the Certified Add-On program.\n\n\n\n<p class=\"has-drop-cap\">For years, few developers or companies could afford the time and monetary investment of creating visual builders, for forms or otherwise. It is no small feat to accomplish what Gravity Forms and others have done in the past. However, the block system is a set of APIs that could take some legwork out of the equation. Eager developers might see this as an opportunity to carve out their own slice of the market.</p>\n\n\n\n<p>Even while Gravity Forms is taking cues from core WordPress, the block editor could level the playing field, introducing new competition.</p>\n\n\n\n<p>&ldquo;I&rsquo;m very excited by what we&rsquo;re seeing plugin developers do with the functionality in the WordPress editor,&rdquo; said Giroux. &ldquo;Giving users common patterns that work the same regardless of the developer, I believe, will only help further adoption of WordPress and the plugins that capitalize on the power of the editor. Gravity Forms is more than just a form builder, it&rsquo;s a platform for building some pretty exciting workflows which can be challenging to adapt to the pace of change in the editor. As the development cycle matures and becomes more predictable, I&rsquo;m eager to see how more complex plugin ecosystems like ours adapt to it.&rdquo;</p>\n\n\n\n<p>The Gravity Forms team looks at forms as &ldquo;just the tip of the iceberg,&rdquo; seeing value in helping web professionals solve problems with different types of business data.</p>\n\n\n\n<p>Even in an increasingly crowded space, they have tripled their team size in the past two years, launched a <a href=\"https://www.gravityforms.com/certified-developers-and-add-ons/\">Certified Developer program</a>, and upgraded their support and user feedback system.</p>\n\n\n\n<p>&ldquo;We are committed to being the most reliable, secure, and accessible form solution, and I think that&rsquo;s what keeps us relevant,&rdquo; said Giroux. &ldquo;The WordPress ecosystem is maturing, and while it is harder to stand out today than perhaps a few years ago, there is still a lot of opportunity for great ideas and great innovation, just like we&rsquo;re seeing with the WordPress editor.&rdquo;</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, 28 Apr 2021 21:44: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:\"Justin Tadlock\";s: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:75:\"WordPress.org blog: Getting Started with the Figma WordPress Design Library\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/news/2021/04/getting-started-with-the-figma-wordpress-design-library/\";s: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:18151:\"<p>Created by James Koster, (<a href=\"https://profiles.wordpress.org/jameskoster/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>jameskoster</a>)</p>\n\n\n\n<p>As the name suggests, the WordPress Design Library is a library of WordPress design assets, enabling anyone to quickly create design prototypes for WordPress UI in Figma.</p>\n\n\n\n<p>These tools are useful for designers when creating new UI and for anyone looking to contribute ideas, enhancements, or even solutions to bug reports. Sometimes pictures really do speak a thousand words.</p>\n\n\n\n<p>In this post, we&#8217;ll talk about some key features of Figma before diving into a practical example that demonstrates some of the WordPress Design Library utilities.</p>\n\n\n\n<h2><strong>What Is Figma?</strong></h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image8.png?resize=632%2C296&ssl=1\" alt=\"\" class=\"wp-image-10174\" width=\"632\" height=\"296\" /></div>\n\n\n\n<p><a rel=\"nofollow\" href=\"https://www.figma.com/\">Figma</a> is a collaborative design tool that members of the WordPress project&#8217;s design team have<a href=\"https://make.wordpress.org/design/2018/11/19/figma-for-wordpress/\"> been using</a> for several years to work on and share design concepts. It offers a variety of handy features such as: in-browser access, rich prototyping tools, component libraries, code inspectors, live embeds, inline commenting, plugins, and much much more.</p>\n\n\n\n<p>Perhaps best of all, it is totally free to sign up and start playing around. If you join the WordPress.org Figma organization (instructions below), you&#8217;ll gain access to the WordPress Design Library enabling you to design WordPress UI in no time.</p>\n\n\n\n<h2><strong>What Is the WordPress Design Library?</strong></h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In Figma, you can share components and styles by publishing them, transforming your file into a library so that you can use instances of those components in other files.</p><p></p><p></p><cite><a rel=\"nofollow\" href=\"https://www.figma.com/best-practices/components-styles-and-shared-libraries/#:~:text=Libraries%3A%20In%20Figma%2C%20you%20can,instances%20of%20your%20components%20live.\">Figma.com</a></cite></blockquote>\n\n\n\n<p>It may be easiest to think of the WordPress Design Library as a visual representation of all the javascript components that compose UI in the WordPress codebase. As an end user of the library, you can use those components in a self-contained environment to create new interface designs. It&#8217;s kind of like a big LEGO box containing all the UI pieces (buttons, form inputs, etc.) that you can use to create and try out new designs.</p>\n\n\n\n<div class=\"juxtapose\"><img id=\"10175\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image13.png?resize=632%2C340&ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-before\" /><img id=\"10176\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image6.png?resize=632%2C340&ssl=1\" alt=\"\" width=\"632\" height=\"340\" class=\"image-compare__image-after\" /></div>\n\n\n\n<p>Creating designs with these assets enables rapid ideation on new interfaces by removing mundane processes that one would ordinarily have to work through. Nobody wants to repeatedly double-check that the button they made perfectly matches the buttons rendered by the code! And on the flip-side of that coin, anyone sharing a design with others will generally endeavor to make specific elements (like buttons) match what exists in the code as closely as possible. The WordPress Design Library solves both these headaches and more.</p>\n\n\n\n<p>An additional benefit to these assets visually matching what exists in the codebase is that any designs you create with them will inherently make use of the latest WordPress design language and consequently <em>feel</em> like WordPress with almost no effort required. Passing such designs on to developers makes them easier to interpret and implement too.</p>\n\n\n\n<h2><strong>Figma Fundamentals</strong></h2>\n\n\n\n<p>Before getting into the practical section of this post, let&#8217;s quickly cover some of the fundamental features of Figma libraries. This will help prepare us for working with the WordPress Design Library.</p>\n\n\n\n<h3><strong>Components</strong></h3>\n\n\n\n<p>As we touched on above, the library consists of &#8220;components&#8221; that serve as visual counterparts to their code-based equivalents. That is to say, there is a Button component in Figma, <em>and</em> a matching Button component in the WordPress codebase.</p>\n\n\n\n<p>But what <em>is</em> a Figma component?</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Components are elements you can reuse across your designs. They help to create and manage consistent designs across projects.</p><p></p><cite><a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">help.figma.com</a></cite></blockquote>\n\n\n\n<p>Let&#8217;s quickly explore some of the properties of Figma components to understand the ways they help when working on our next design.</p>\n\n\n\n<h3><strong>Variants</strong></h3>\n\n\n\n<p>Some Figma components offer variants. One example is Button(s) which all have the following states:</p>\n\n\n\n<ul><li>Resting</li><li>Hover</li><li>Focus</li><li>Disabled</li></ul>\n\n\n\n<p>These can be manipulated via the variants interface in Figma:</p>\n\n\n\n<img width=\"632\" height=\"449\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image7-2.gif?resize=632%2C449&ssl=1\" alt=\"\" class=\"wp-image-10179\" />\n\n\n\n<p>Other examples of components with variants are form inputs and menu items. Variants are a new feature in Figma, so we&#8217;ll be adding more over time.</p>\n\n\n\n<h3><strong>Overrides</strong></h3>\n\n\n\n<p>Although any components you insert are intrinsically linked to the master component in the library, it is possible to override some properties.</p>\n\n\n\n<p>While working with an instance of the Button component, you can change things like the label, or even the background color, while maintaining the link to the master component in the library. If you&#8217;re familiar with git workflows, this is kind of like creating a local branch. Any changes you make can easily be reset in a couple of clicks.</p>\n\n\n\n<img width=\"632\" height=\"527\" src=\"https://i0.wp.com/wordpress.org/news/files/2021/04/image10.gif?resize=632%2C527&ssl=1\" alt=\"\" class=\"wp-image-10180\" />\n\n\n\n<p>Overrides made to your local instance will persist even when the master component is updated. So if your design calls for a button with a green background, you can apply that override safely with the knowledge that even if the master component is updated, your button can inherit those updates and remain green.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>We&#8217;ve only really scratched the surface of components here. So I would recommend the official <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360038662654-Guide-to-Components-in-Figma\">Figma documentation</a> for more advanced information.</p>\n\n\n\n<h3><strong>Figma Styles</strong></h3>\n\n\n\n<p>In addition to components, styles are also published as part of the WordPress Design Library. They have similar properties to components in that a master style exists in the library and can be utilized in your local Figma file. Just like Components, Styles will receive updates when changes to the library are published.</p>\n\n\n\n<p>Styles are used to define colors, typographical rules, and effects like drop-shadows present in the WordPress codebase. They enable you to apply things like text or background colors that will match other UI parts.</p>\n\n\n\n<p>Using Styles from the library, you ensure that your creations match existing UI elements, making it easier to implement.</p>\n\n\n\n<img width=\"632\" height=\"799\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image11.png?resize=632%2C799&ssl=1\" alt=\"\" class=\"wp-image-10181\" />\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>To learn more about styles in Figma, I recommend the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360039238753-Styles-in-Figma\">official documentation</a>.</p>\n\n\n\n<h3><strong>Views and Stickers</strong></h3>\n\n\n\n<p>&#8220;Stickers&#8221; are simply arrangements of Components and Styles that have been combined to represent common UI elements. They are not good candidates for full componentization due to their frequent customization needs. Examples of Stickers include the Inspector sidebar and the block inserter:</p>\n\n\n\n<img width=\"632\" height=\"770\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image16.png?resize=632%2C770&ssl=1\" alt=\"\" class=\"wp-image-10182\" />\n\n\n\n<p>Their utility is simple: find the sticker you need, peel (copy) it from the WordPress Design Library, and stick (paste) it into your local file before customizing as needed.</p>\n\n\n\n<p><em>Stickers</em> are not Figma features like Components and Styles, but any stickers you copy to a working file will stay up to date by virtue of their underlying assets.</p>\n\n\n\n<p><em>Views</em> are arrangements of components, styles, <em>and</em> stickers.</p>\n\n\n\n<h2><strong>Designing a Block Using the WordPress Design Library</strong></h2>\n\n\n\n<p>Okay, now that we have a handle on the basics of Figma libraries and their features and the utilities of the WordPress Design Library like Stickers and Views, let&#8217;s work through a practical example – designing the UI for a brand new block.</p>\n\n\n\n<h3><strong>Getting Started</strong></h3>\n\n\n\n<p>All you need to get started is a Figma account added to the WordPress.org Figma organization.</p>\n\n\n\n<p>Once you&#8217;ve signed up at<a href=\"https://www.figma.com/\"> Figma</a>, simply join the<a href=\"http://wordpress.slack.com/messages/design/\"> #Design</a> channel on the community Slack and request an invite. Include your Figma username, and a friendly community member will help get you set up in no time.</p>\n\n\n\n<p>Now the fun begins!</p>\n\n\n\n<p>To create a fresh new design file in Figma, visit the<a href=\"https://www.figma.com/files/project/1339415/Gutenberg?fuid=652576565531990233\"> Gutenberg project</a> and click the &#8220;+ New&#8221; button.</p>\n\n\n\n<img width=\"632\" height=\"395\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image15.png?resize=632%2C395&ssl=1\" alt=\"\" class=\"wp-image-10183\" />\n\n\n\n<p>Now let&#8217;s include the WordPress Design Library in our working file so that we have access to all the goodies we&#8217;ll need:</p>\n\n\n\n<ol><li>Open the &#8220;Assets&#8221; panel and click the little book icon to view the available Team Libraries.</li><li>In the modal, toggle the WordPress Design Library on. You can leave the others off for now.</li></ol>\n\n\n\n<img width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image18.gif?resize=632%2C341&ssl=1\" alt=\"\" class=\"wp-image-10184\" />\n\n\n\n<p>After closing the modal, you&#8217;ll notice a number of components become visible in the assets panel. To insert them, they can be dragged on to the canvas:</p>\n\n\n\n<img width=\"632\" height=\"341\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image5.gif?resize=632%2C341&ssl=1\" alt=\"\" class=\"wp-image-10185\" />\n\n\n\n<p>It&#8217;s kind of like inserting a block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<h3><strong>Creating a Pizza Block <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f355.png\" alt=\"🍕\" class=\"wp-smiley\" /></strong></h3>\n\n\n\n<p>I love to eat pizza, so for fun, I&#8217;m going to design a new block that simply allows the user to display a delicious pizza in their posts and pages. I want the block to include options for a total number of slices and different toppings.</p>\n\n\n\n<h3><strong>Work Out the Flow</strong></h3>\n\n\n\n<p>I always like to concentrate on individual flows when designing blocks. That is to say, the linear steps a user will take when working with that block. In this case, I want to create visualizations of the following steps/views in our Figma file:</p>\n\n\n\n<ol><li>Inserting the block from the Block Inserter</li><li>The Pizza Block placeholder state including options in the block, its Toolbar, and the Inspector</li><li>The configured Pizza Block settings</li><li>The end result – a delicious pizza sitting comfortably on the canvas</li></ol>\n\n\n\n<h3><strong>Sketch the New States</strong></h3>\n\n\n\n<p>Thanks to the WordPress Design Library, I&#8217;ll be using as many existing UI components as possible, but I still need a rough idea of how they will be composed in the new interfaces that my Pizza block will require. I normally find it helpful to sketch these out on paper.</p>\n\n\n\n<p>Here&#8217;s the placeholder state which users will see when they first insert the block. This should be all I need:</p>\n\n\n\n<img width=\"632\" height=\"843\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image2.png?resize=632%2C843&ssl=1\" alt=\"\" class=\"wp-image-10186\" />\n\n\n\n<h3><strong>Prepare the Views and Stickers</strong></h3>\n\n\n\n<p>Helpfully, there are Views in the WordPress Design Library I can use for each of the steps in the flow outlined above.</p>\n\n\n\n<p>I open the library, navigate to the Views page, find the views I need, copy them, and paste into my working file.</p>\n\n\n\n<img width=\"632\" height=\"374\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image3.gif?resize=632%2C374&ssl=1\" alt=\"\" class=\"wp-image-10187\" />\n\n\n\n<p>It is very important to <strong>copy</strong> (not cut) Views from the library so that they remain intact and other people can still access them. If you cut them, they&#8217;ll be gone forever, so please don&#8217;t do that <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n\n\n\n<p>I&#8217;m also going to need a block placeholder sticker, so I navigate to the Stickers page, copy the one that most closely resembles my sketch from before, and paste it into my working file.</p>\n\n\n\n<img width=\"632\" height=\"374\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image12.gif?resize=632%2C374&ssl=1\" alt=\"\" class=\"wp-image-10188\" />\n\n\n\n<p>As with views, please only <strong>copy</strong> stickers; do not cut them.</p>\n\n\n\n<h3><strong>Gather the Components</strong></h3>\n\n\n\n<p>Referring back to the placeholder state I sketched out on paper (it can be helpful to import this into your Figma file), I can see that I&#8217;m going to need some form elements to realize the design.</p>\n\n\n\n<img width=\"632\" height=\"446\" src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/image4.png?resize=632%2C446&ssl=1\" alt=\"\" class=\"wp-image-10189\" />\n\n\n\n<p>I navigate to the Assets panel, locate the components I need, and drag them into my file:</p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/UDyZdtZGo9N0e2qwgyIyz8V3xu9_zwGW9qBbBnozvwmXmVYURZ-ROLANtW7FafWYbQRnPQNWeRupk_9_1nzmKn8gRBlYDMKYR3QpwAubv8ZKAPMS_uV9VaYHsjfPItfqPiY0d1X5\" alt=\"\" />\n\n\n\n<p>Helpful tip: Once a component has been inserted, you can transform it into another component via its settings panel. Sometimes it is easier to copy/paste a component you already inserted and transform it this way, rather than opening the assets panel over and over.</p>\n\n\n\n<h3><strong>Arrange the Views, Stickers, and Components to Create a Coherent Design</strong></h3>\n\n\n\n<p>Now that we’ve gathered all the individual pieces we need, it&#8217;s simply a case of arranging them so that they resemble each of the steps of the flow we outlined before. This is done with simple drag and drop.</p>\n\n\n\n<p>If you&#8217;re familiar with software like Photoshop, Sketch, and others, this should feel very familiar.</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/DVeU3I9ajqRvMD_e5q6G5vctb4TGbgA9CsIR9xYZ3yPqtmPhbDP9cODTHH4KS-I8GB9R4UF2DV6SSsayKpy45AEDvvY2gLbMsCA0ivfsqGcm509OWeTOpaMuQcv7TFz6-xoiKFfo\" alt=\"\" />\n\n\n\n<p>Once everything is in place, our flow is complete:</p>\n\n\n\n<a href=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?ssl=1\"><img width=\"632\" height=\"97\" src=\"https://i1.wp.com/wordpress.org/news/files/2021/04/image14-1.png?resize=632%2C97&ssl=1\" alt=\"\" class=\"wp-image-10238\" /></a>\n\n\n\n<p>I still find it incredible that we&#8217;re able to do this in just a few short moments.</p>\n\n\n\n<h3><strong>Hook up the Prototype</strong></h3>\n\n\n\n<p>With each step of our flow created, the last piece of the puzzle is to connect them and form a clickable prototype.</p>\n\n\n\n<p>I switch to the Prototype panel and create click behaviors by selecting a layer, then dragging the white dot to the corresponding frame.</p>\n\n\n\n<img src=\"https://lh5.googleusercontent.com/i0fLdjWZhRTNFCKvHLLEfUnFx5CIm7p014R1avEV02F_B4DrG1v6Cw-XqYBth9JVYylylM7_mkqcALWEWcUVf0dRhgixJRtmsRIDHyMIZyom2cPdetMAFixgsvsmrqT03Xevync7\" alt=\"\" />\n\n\n\n<p>There are a variety of behaviors that the Figma prototyping tools support, such as a hover, drag, and click. It is even possible to create smart animations. Perhaps that&#8217;s something we can explore in another tutorial, but for now, I will refer you to the <a rel=\"nofollow\" href=\"https://help.figma.com/hc/en-us/articles/360040314193-Guide-to-prototyping-in-Figma\">Figma documentation</a> for more advanced prototyping.</p>\n\n\n\n<p>Now that I&#8217;ve connected all the appropriate elements, I am able to take my prototype for a test drive by clicking the Play <img src=\"https://s.w.org/images/core/emoji/13.0.1/72x72/25b6.png\" alt=\"▶\" class=\"wp-smiley\" /> icon:</p>\n\n\n\n<img src=\"https://lh3.googleusercontent.com/nBmEr4ohZ8RsjLM5wm4u8UY_zzTE0V1bXj-uoNV79WDibl5bgkZXY64ixl_BgNutg74fvxRZokUtLzWuWVlD46W4tAD_-Dcf-TclgIR9UoO73oCmNxmfcSEmUDgDG0e5WYFJ80tH\" alt=\"\" />\n\n\n\n<p>You can try it too; just click <a href=\"https://www.figma.com/proto/BmRYWzfrakFwsmIQa24xqx/Pizza-Block?page-id=0%3A1&node-id=48%3A767&viewport=1792%2C385%2C0.46477335691452026&scaling=min-zoom\">here</a>.</p>\n\n\n\n<h2><strong>That&#8217;s All, Folks!</strong></h2>\n\n\n\n<p>I tried to keep this tutorial fairly simple and concise; even though we only really got to grips with the basics here, you can see the power of Figma and the WordPress Design Library when it comes to trying out new designs.</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, 28 Apr 2021 17:52:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:62:\"WPTavern: Creative Commons Search to Relaunch 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:30:\"https://wptavern.com/?p=115690\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/creative-commons-search-to-relaunch-on-wordpress-org?utm_source=rss&utm_medium=rss&utm_campaign=creative-commons-search-to-relaunch-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:3493:\"<p>The <a href=\"https://search.creativecommons.org/\">Creative Commons search engine</a> will soon be part of WordPress.org, as Automattic will begin sponsoring several members of the CC Search team to maintain it. The engine currently offers over 500 million images, audio, and videos, under Creative Commons licenses or the public domain, aggregating more than 45 different sources. </p>\n\n\n\n<p>Matt Mullenweg <a href=\"https://ma.tt/2021/04/cc-search-to-join-wordpress-org/\">announced</a> the acquisition on his personal blog, saying that CC Search would be &ldquo;joining the WordPress project.&rdquo; It is a major benefit to the community, providing a valuable resource for finding GPL-compatible images for use in WordPress-derivative products like themes and plugins. Mullenweg hinted at a long-term plan where deeply integrating CC search into WordPress.org is just the first step: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I am eager to give a new home to their open search product on WordPress.org in continued commitment to open source freedoms, and providing this community resource for decades to come. This is an important first step to provide a long-term, sustainable challenger to proprietary libraries like Unsplash.</p></blockquote>\n\n\n\n<p>The reference to Unsplash follows the company&rsquo;s <a href=\"https://wptavern.com/unsplash-responds-to-image-licensing-concerns-clarifies-reasons-for-hotlinking-and-tracking\">controversial licensing changes</a>, where it abandoned CC0 licensing in 2017 after making a name for itself by offering images originally shared to the public domain. That body of work was hidden away by Unsplash&rsquo;s refusal to use its API to differentiate these CC0 images going forward. In July 2020, the controversy was renewed after Unsplash launched its official WordPress plugin. Some users are apprehensive about the company&rsquo;s willingness to change its license and terms in the future, especially after <a href=\"https://unsplash.com/blog/unsplash-getty/\">Unsplash was acquired by Getty Images</a>. </p>\n\n\n\n<p>Creative Commons search remains one of the few places to find CC0-licensed images that are compatible with the GPL. It will be interesting to see how this news of CC Search finding a new home on WordPress.org will affect Automattic&rsquo;s relationship with Pexels, another image library with even more restrictive licensing than Unsplash. Access to Pexels was <a href=\"https://wordpress.com/blog/2018/08/02/diverse-stock-photo-library-pexels/\">added to WordPress.com in 2018</a> and is also <a href=\"https://jetpack.com/support/jetpack-blocks/pexels-free-photo-library/\">integrated with Jetpack</a>.</p>\n\n\n\n<p>&ldquo;When I started CC Search, I always hoped it would become part of the infrastructure of the Internet,&rdquo; former Creative Commons CEO <a href=\"https://twitter.com/ryanmerkley\"></a>Ryan Merkley&nbsp; said. &ldquo;Matt Mullenweg and I first talked about CC Search in 2018, and he immediately saw the potential. I&rsquo;m so happy to see this happen. It&rsquo;s great for WordPress, and great for the Commons.&rdquo;</p>\n\n\n\n<p>Mullenweg&rsquo;s announcement said he anticipates CC search will be live and and running on WordPress.org in a few weeks. The new Automattic employees who were hired from Creative Commons will have their contributions sponsored by the company as part of the company&rsquo;s <a href=\"https://wordpress.org/five-for-the-future/pledge/automattic/\">Five for the Future commitment</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 28 Apr 2021 04:42:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:73:\"WPTavern: Churel Is a Colorful and Minimalist Block-Ready WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115663\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:191:\"https://wptavern.com/churel-is-a-colorful-and-minimalist-block-ready-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=churel-is-a-colorful-and-minimalist-block-ready-wordpress-theme\";s: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:5311:\"<img />\n\n\n\n<p class=\"has-drop-cap\">WordPress theme development company Themix released its third free theme to the official directory this week. <a href=\"https://wordpress.org/themes/churel/\">Churel</a> is described as a theme for organizations and businesses that also works for traditional blogging.</p>\n\n\n\n<p>The development team has a keen eye for modern color schemes and font families. The theme has a refreshing design that is rare for the free theme directory, at least at first glance. It is the sort of project with just the right amount of eye candy to pull users in.</p>\n\n\n\n<p>If that was everything necessary for great design, the theme would land in my top 10 picks from WordPress.org without a second thought. However, after digging deeper, it was clear the design had some issues. They are fixable. It would not take much nudging of a few CSS rules to make this a much better theme, so let&rsquo;s just dive right into the problems before getting into the good stuff.</p>\n\n\n\n<p>The theme&rsquo;s most clear-cut flaw is with its typography. Sizing and words-per-line work well enough. The default Open Sans font is rarely a poor choice for readability. However, the line height is far too large for a good flow, and the white space between paragraphs makes it tough to tell where one ends and the other begins. It is almost as if the team got halfway through with fine-tuning the typography and decided to simply stop. It is a glaring issue that makes the theme practically unusable for long-form content, but it could be addressed with two minor style changes.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Default body copy.</li><li class=\"blocks-gallery-item\"><img />Adjusted body copy.</li></ul>\n\n\n\n<p>For a theme &ldquo;designed to take full advantage of the flexibility of the block editor,&rdquo; it is missing one crucial component: editor styles. It is marked with the official &ldquo;Block Editor Styles&rdquo; tag in the directory and passed through the review process with no mention of it. </p>\n\n\n\n<p>This seems like an oversight. Maybe something was lost in the build process or accidentally deleted before submission.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Front end design.</li><li class=\"blocks-gallery-item\"><img />Block editor design.</li></ul>\n\n\n\n<p>Churel relies on the Kirki Customizer Framework, a requirement for accessing any theme options. Most controls the theme uses are built directly into WordPress. It does not make much sense to tie them to the activation of a third-party plugin, particularly for its simple color options.</p>\n\n\n\n<p>Despite its faults, I fell in love with its homepage design immediately. The modern card design coupled with a minimalist page layout and bright colors makes me want to explore. <em>And, you just got to love the ghost in the <a href=\"https://wp-churel.themeix.com/\">demo</a> logo, right?</em></p>\n\n\n\n<img />Churel theme homepage.\n\n\n\n<p>I also welcome any theme that actually creates a unique design for sticky posts on the homepage. Far too many theme authors either ignore it in whole or relegate it to a last-minute addition. The design team did not go overboard, but they made sure that readers know, &ldquo;Hey, this is important,&rdquo; while keeping it simple.</p>\n\n\n\n<p>Other elements are attractive about the theme, such as its subscription/newsletter area in the page footer. The attention to detail when styling the core widgets means everything looks good in the theme&rsquo;s sidebars. And a handful of animations sprinkled throughout the design, such as floating circles and an underline effect on post title links, add an extra dimension without feeling clunky.</p>\n\n\n\n<p>Churel is almost a top-tier block-ready WordPress theme. With a handful of trivial CSS changes and &mdash; I will sound like a broken record to regular readers &mdash; some block patterns, it could be.</p>\n\n\n\n<p>The theme&rsquo;s &ldquo;Authors&rdquo; page template is an example of a missed opportunity for a block pattern. The page template itself might be perfect for some but not others. It automatically lists administrators and authors along with their profiles. By overlooking other roles that can publish posts, the system is rigid. &ldquo;Authors&rdquo; or, more commonly, &ldquo;team&rdquo; pages are an ideal fit for the block system. Site administrators could quickly create and customize such a page if they merely had a pattern for doing so.</p>\n\n\n\n<img />Churel theme &ldquo;Authors&rdquo; page template.\n\n\n\n<p>A pattern built from the Columns block with nested Image, Heading, Separator, and Social Icons blocks would make this easy. Throw in an &ldquo;alternating colors&rdquo; block style (or just let users control the colors) for the Columns, and users can build what they want more easily than theme authors doing guesswork about what user profiles should appear.</p>\n\n\n\n<p>The block editor exists to solve these problems, and theme authors are leaving half their tools in the bag. <a href=\"https://wptavern.com/block-patterns-will-change-everything\">Block patterns will be a cornerstone</a> of theme design in the coming years.</p>\n\n\n\n<p>I may be overusing the term as of late, but this yet another theme that has <em>potential</em>. It is not the best that it can be yet, but it is a decent 1.x launch.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Apr 2021 21:09: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:37:\"Matt: CC Search to join 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:22:\"https://ma.tt/?p=54079\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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://ma.tt/2021/04/cc-search-to-join-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:1426:\"<img />\n\n\n\n<p>The WordPress community has long advocated for a repository with GPL-compatible images, and it’s time to listen to that need. CC Search, a CC0 (<a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">Creative Commons Zero</a>) image search engine, is joining the WordPress project with over 500 million openly licensed and public domain images discoverable from over 50 sources, audio and video soon to come.</p>\n\n\n\n<p>I am a long-time supporter of <a href=\"https://creativecommons.org/\">Creative Commons</a> and their influential work on open content licenses, and when we heard they were considering shutting down their CC Search engine we immediately started exploring ways we could keep it going. I am eager to give a new home to their open search product on WordPress.org in continued commitment to open source freedoms, and providing this community resource for decades to come. This is an important first step to provide a long-term, sustainable challenger to proprietary libraries like Unsplash.</p>\n\n\n\n<p>Automattic has hired key members of the CC Search team and will sponsor their contributions as part of <a href=\"https://wordpress.org/five-for-the-future/pledge/automattic/\">our Five for the Future commitment</a>. I look forward to seeing the project grow and welcome them to the WordPress community! Will share in a few weeks when everything is live and running on the site.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 27 Apr 2021 17:36: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: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: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:52:\"WordPress.org blog: Curious About Full Site Editing?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10190\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/04/curious-about-full-site-editing/\";s: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:2790:\"<p>The second major release of the year is right around the corner. You might have heard a <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">bit of buzz</a> about full site editing around your WordPress circles, so this post will give you some big picture things to know as well as a few wayfinding links for anyone who wants to know more.</p>\n\n\n\n<p><strong>For Site Owners and Operators</strong></p>\n\n\n\n<p>If you own and operate a WordPress site, updating to version 5.8 should be a seamless experience, just like any other update. All the conversation around full site editing is very exciting, but shouldn’t be alarming—<strong>everything in the next release that relates to full site editing is opt-in</strong>. To experiment freely with it, you need a theme that is built for it. Check the links at the end to see a few examples!</p>\n\n\n\n<p><strong>For Agencies and Theme/Plugin Developers</strong></p>\n\n\n\n<p>If you extend the functionality of the WordPress CMS for clients, updating to version 5.8 should also be seamless. As always, it’s smart to spot-check custom implementations in a staging environment or fully test when the release candidate is made available. Want to test your products and get everything client-ready? Check out any of the testing options below.</p>\n\n\n\n<p><strong>For Contributors and Volunteers</strong></p>\n\n\n\n<p>If you contribute time and expertise to the WordPress project, you can join us in the interesting work leading up to the WordPress 5.8 release and update your site with the deep satisfaction of a job well done. There is a lot that goes into every release—from design and development to documentation and translation; if you’ve got some time to spare, and want to help support the project that supports the tool that supports your site (whew!), check out the links below.</p>\n\n\n\n<h2>Resources</h2>\n\n\n\n<ul><li>A few block themes: <a href=\"https://wordpress.org/themes/tt1-blocks/\">TT1 Blocks</a>, <a href=\"https://wordpress.org/themes/hansen/\">Hansen</a>, <a href=\"https://wordpress.org/themes/block-based-bosco/\">Block-based Bosco</a>, <a href=\"https://wordpress.org/themes/q/\">Q</a></li><li>A few focus areas: <a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Gutenberg plugin focuses</a></li><li>A few ways you can test: <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a>, <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">Beta testing plugin</a>, <a href=\"https://gutenbergtimes.com/need-a-zip-from-master/#nightly\">Gutenberg Times nightly build</a></li><li>A few pieces of documentation: <a href=\"https://developer.wordpress.org/block-editor/handbook/full-site-editing/\">Full Site Editing Overview</a></li></ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_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 Apr 2021 17:26:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:\"\";}}}}}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:87:\"WPTavern: Will We See In-Person WordCamps in 2021? An Open Discussion on a Path Forward\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115641\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:217:\"https://wptavern.com/will-we-see-in-person-wordcamps-in-2021-an-open-discussion-on-a-path-forward?utm_source=rss&utm_medium=rss&utm_campaign=will-we-see-in-person-wordcamps-in-2021-an-open-discussion-on-a-path-forward\";s: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:3613:\"<p class=\"has-drop-cap\">Now that COVID-19 vaccinations are becoming more widespread, many hope that in-person WordCamps can once again be a reality. There is no official path forward just yet, and decisions will likely be locally based in the coming months. Angela Jin, a community organizer for Automattic, announced an <a href=\"https://make.wordpress.org/community/2021/04/26/discussing-the-path-to-in-person-wordcamps/\">open discussion around the topic</a>.</p>\n\n\n\n<p>Currently, all WordCamps are online-only events. There is no official decision on when in-person events will begin anew.</p>\n\n\n\n<p>This is a follow-up to an earlier <a href=\"https://wptavern.com/wordpress-community-team-discusses-return-to-in-person-events\">discussion that began in December 2020</a>. It served as an initial opinion-gathering mission. For communities that have more effectively contained the COVID-19 spread, the Community Team <a href=\"https://make.wordpress.org/community/2021/02/16/announcement-decision-making-checklist-for-in-person-meetups-now-available/\">posted guidelines and a checklist</a> for local Meetups in February.</p>\n\n\n\n<p>Most of the ideas from the December 2020 dialogue are at the forefront of the current open discussion. Mandatory masks, restricting the length of events, limiting attendance, and capping attendance according to the venue&rsquo;s capacity top the list.</p>\n\n\n\n<p>One of the tougher-to-achieve goals might be setting up safety guidelines around food or drink, which are often steeped in the local culture. It will also be a primary safety concern.</p>\n\n\n\n<p>Mandatory registration is on the table. This would allow organizers to contact attendees in case of exposure.</p>\n\n\n\n<p>Other suggestions center on maintaining local events, which is what WordCamp is all about. While some of the conferences are held in major cities and draw international crowds and speakers, this could be an opportunity to make sure that events focus directly on their communities. It would also be necessary for containing any spread of the virus or variants to outside populations.</p>\n\n\n\n<p>There is one suggestion to recommend that only vaccinated conference-goers attend. This would likely fall under an honor system. Making this mandatory could create potential hurdles based on local jurisdictions. For example, there is a House Bill in Alabama, my home state, that would not allow entertainment events to &ldquo;discriminate&rdquo; based on vaccination status if passed. I have yet to verify if WordCamps fall under the definition of &ldquo;entertainment events&rdquo; like a concert or sports match.</p>\n\n\n\n<p>There are still many unknowns at this point, and every potential in-person WordCamp would have to follow local laws. However, we are nearing a time where such events may once again be a reality.</p>\n\n\n\n<p>&ldquo;I&rsquo;m going to get a little more personal here: returning to in-person WordCamps is going to be an emotional experience that is going to affect everyone differently,&rdquo; Jin said in a final note, sharing thoughts that echo throughout the WordPress ecosystem.</p>\n\n\n\n<p>&ldquo;The WordPress community has a big range of introverts to extroverts, and we&rsquo;ve gone through major changes to how we interact with each other. For all that I want to hug everyone, it also is strange and a bit frightening to think about all that human contact after a year-and-then-some of this pandemic. Supporting organizers in bringing back WordCamps in a way that acknowledges and accommodates all our excitement and fears, as well as our love of WordPress, is a worthy goal.&rdquo;</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, 26 Apr 2021 20:35:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:62:\"WPTavern: FLoC Blocking Discussion Continues on WordPress Trac\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115523\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/floc-blocking-discussion-continues-on-wordpress-trac?utm_source=rss&utm_medium=rss&utm_campaign=floc-blocking-discussion-continues-on-wordpress-trac\";s: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:4580:\"<p>Last week WordPress contributors began a heated <a href=\"https://wptavern.com/wordpress-contributors-propose-blocking-floc-in-core\">discussion regarding blocking FLoC</a> (Federated Learning of Cohorts). Google&rsquo;s experimental alternative to third-party cookies has become a highly contentious topic that made its way into last week&rsquo;s Core developers meeting. </p>\n\n\n\n<p>Representatives from the Chrome team also attended the meeting to clear up any confusion and answer questions about how FLoC currently works. They <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1619037652084400\">related</a> that during the FLoC Origin Trial (the process by which Chrome introduces new proposed API&rsquo;s for feedback from developers), a page will only be included in the browser&rsquo;s FLoC computation for one of two reasons:</p>\n\n\n\n<ul><li>The FLoC API&nbsp;<code>document.interestCohort()</code>&nbsp;is used on the page.</li><li>Chrome detects that the page&nbsp;<a target=\"_blank\" href=\"https://github.com/WICG/floc/issues/82\" rel=\"noreferrer noopener\">loads ads or ads-related resources</a>.</li></ul>\n\n\n\n<p>&ldquo;In the final end state, we expect the way FLoC will work is that the only pages that will be relevant to calculating your cohort are the pages that call the FLoC API,&rdquo; Chrome representative Michael Kleber said. &ldquo;So pages will &lsquo;opt in&rsquo; by using some new JS function call.&rdquo;</p>\n\n\n\n<p>Since FLoC is still in the the beginning stages, the Chrome team cannot confirm the final behavior for what pages will be included in FLoC calculations. At this point, it seems like it will primarily affect publishers and ad-supported websites in the future.</p>\n\n\n\n<p>Although the authors and proponents of the proposal prescribed immediate action, WordPress&rsquo; leadership has determined that an implementation discussion is premature at this time. </p>\n\n\n\n<p>&ldquo;I am now amending my posted request for a reworking of the proposal &ndash; I do not want to see another proposal for action in WordPress right now,&rdquo; WordPress lead developer Helen Hou-Sand&iacute; said during the meeting. &ldquo;What we need is a Trac ticket where we track the status of the FLoC trial/implementation and discuss periodically to see if action is needed. I have an opinion, but it&rsquo;s not really relevant at this time, and I think more of us should be comfortable with that idea.&rdquo;</p>\n\n\n\n<p>The Chrome team did not expect that many people would be considering FLoC at this point, as Origin Trials generally only attract a handful of people who are curious about the technical details. FLoC gained more widespread attention after the critical <a href=\"https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea\">article</a> from EFF. The <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41168\">original proposal</a> on make.wordpress.org also attracted media attention due to its confusing approach, premature assumptions, and lack of critical <a href=\"https://make.wordpress.org/core/handbook/best-practices/post-comment-guidelines/#peer-review\">peer review</a>.</p>\n\n\n\n<p>Peter Wilson <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/#comment-41168\">commented</a> on behalf of WordPress&rsquo; security team after meeting to discuss the issue, stating that it is unequivocally not a security concern:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Treating this as WordPress currently treats any other&nbsp;security issue&nbsp;would require releasing 21 versions of WordPress. As identified in other comments on this thread, it would also break the implicit contract of security releases by including an&nbsp;enhancement&nbsp;in the release.</p><p>As a result of these consideration, the security team have concluded that treating this as a security issue is inappropriate.</p><p>Whether this is suitable to be included in WordPress and subsequently released as part of the next 5.7.x maintenance release are discussions for the&nbsp;Core&nbsp;team. The security team do not have a consensus view on these questions.</p></blockquote>\n\n\n\n<p>Hou-Sand&iacute; opened a <a href=\"https://core.trac.wordpress.org/ticket/53069\">ticket</a> where discussion continues on the implications of FLoC. As more information becomes available from Chrome&rsquo;s Origin Trial, WordPress contributors will be better prepared to discuss how it may affect publishers and whether a core block, privacy setting, or other action is necessary.</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, 26 Apr 2021 16:44:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress.org blog: WP Briefing: Your Opinion is Our Opportunity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=10171\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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/2021/04/your-opinion-is-our-opportunity/\";s: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:13066:\"<p>In this episode, Josepha discusses the importance of co-development and testing for the continued growth and maintenance of the WordPress project.&nbsp;</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2><strong>Credits</strong></h2>\n\n\n\n<ul><li>Editor:<a href=\"https://profiles.wordpress.org/dustinhartzler/\"> Dustin Hartzler</a></li><li>Logo:<a href=\"https://profiles.wordpress.org/beafialho/\"> Beatriz Fialho</a></li><li>Production:<a href=\"https://profiles.wordpress.org/mkaz/\"> </a><a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a></li><li>Song: Fearless First by Kevin MacLeod</li></ul>\n\n\n\n<h2>References</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/news/2008/10/usability-testing-report-25-and-crazyhorse/\">2.5 Usability Testing Report&nbsp;</a></li><li><a href=\"https://europe.wordcamp.org/2021/\">WordCamp Europe 2021</a></li><li><a href=\"https://www.meetup.com/Pune-WordPress-Knowledge-Exchange/events/277520243/\">Pune Work Along (Self Study) Meetup</a></li><li><a href=\"https://fr.wordpress.org/2021/04/09/le-30-avril-2021-rejoignez-nous-pour-un-nouveau-wordpress-translation-day-fr/\">French Mini-Translation Day, April 30, 2021</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">April 14, 2021, Full Site Editing Go/No-Go Demo Recap</a></li><li><a href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\">Full Site Editing Go/No-Go Next Steps</a></li><li><a href=\"https://make.wordpress.org/test/\">Test WordPress.org</a></li></ul>\n\n\n\n<h2>Transcript</h2>\n\n\n\n<span id=\"more-10171\"></span>\n\n\n\n<p>0:10</p>\n\n\n\n<p>Hello, everyone, and welcome to the WordPress briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go!</p>\n\n\n\n<p>0:39</p>\n\n\n\n<p>Prior to Gutenberg, our current multi-year project that is changing the way we see WordPress, another multi-year project changed the way we saw WordPress. Starting in 2008, substantial changes to the WordPress interface came in a series of major releases, starting with WordPress 2.5. That was before my time in the project; I&#8217;ve only ever worked with the current dashboard in WordPress. But, from what I&#8217;ve read, the user testing that would have gone into it was a huge undertaking and very well coordinated. Now, WordPress has not taken on that type of robust testing project since, but starting around 2014 or 2015, a community testing practice was started. I&#8217;ve shared these calls for testing frequently, both on Twitter and in this podcast. But you may not really know why I find the testing program so valuable. So today, I&#8217;m going to explore with you the concept of co-developers in open source.</p>\n\n\n\n<p>1:52</p>\n\n\n\n<p>Open source software, like WordPress, is built by the people who show up. There are a few obvious groups when you think of software, the developers, designers, technical writers, folks who monitor the forums, and really, all the teams you find in our WordPress project. Co-developers or co-creators, if you&#8217;ll join me in making our tent a little bigger, refers to the users of an open source product who actively engage and contribute to the work by using the software and sharing any bugs that they find.</p>\n\n\n\n<p>2:25</p>\n\n\n\n<p>I mentioned this group in the episode about how WordPress improves. Specifically in that episode, I underlined that if you consider users to be part of the collaborative process, as long as people use your product, those people will have opinions about your product’s needs. And today, I&#8217;m extending that thought a bit further to say that, as long as there are opinions, there are opportunities.</p>\n\n\n\n<p>2:51</p>\n\n\n\n<p>When you know what isn&#8217;t working, you can focus your attention on a solution, you can focus on making sure that you can make it work. The existence of co-creators is one of the great things about open source. No designer or developer or product owner has to know every sort of user to be able to get feedback from them. If they show up, test the software and get their thoughts written down, then you can start to see patterns and common pain points. It is also, unfortunately, one of the great difficulties of being an open source project. After all, if users don&#8217;t show up, or don&#8217;t test, or don&#8217;t write down their feedback, it&#8217;s impossible to know what worked for them and what didn&#8217;t. And on top of that, with such a large percentage of the web being supported by WordPress in this case, not every problem is part of a pattern. And not all patterns are part of the current priorities.</p>\n\n\n\n<p>3:54</p>\n\n\n\n<p>Looking beyond that double-edged sword. Let&#8217;s say that this idea of a co-creator makes sense to you. And more than that, you feel like it describes you. What does it mean for you to show up in WordPress? There are lots of good ways to offer this sort of feedback and contribute to those patterns that can help us see through the fog. So I have for you a mini list and, of course, a bunch of links in the show notes for you.&nbsp;</p>\n\n\n\n<p>So some good ways. First, you can participate in any of the dedicated calls for testing. They are short and frequently have a guide. I participate in them and generally find them fun. I say generally because sometimes I also find them frustrating. That&#8217;s really okay too; the frustrations helped me to identify that I found a problem. And if I can find a problem, then I have saved someone else from finding that problem in the future. The second thing you can do is file a bug report with information about what happened when you ran into a problem and how someone like me could make your bug happen on their site. Bug</p>\n\n\n\n<p>5:00</p>\n\n\n\n<p>Reporting is one of the things I&#8217;ve grown to really love in my time and open source; I did not love it. At first, I was really scared to do it. I mostly used to send videos of the bugs that I found to other people and ask them to file the bug reports for me. But then, of course, I never knew whether they got fixed or not. So I was scared to do it at first. But once I figured out what makes a “good report,” I felt like I was helping circle hidden treasure on a map or something. I realized also not everyone&#8217;s excited about finding hidden treasure on a map. But I play video games and finding hidden treasure on maps is, like, a thing.</p>\n\n\n\n<p>5:43</p>\n\n\n\n<p>A third really great way to contribute like this is that you can join any community meeting to learn more about what&#8217;s happening now and in the future, or just to see what makes WordPress work. As a heads up, these meetings go really fast. And they&#8217;re all in text. And there&#8217;s sometimes, but not all the time, a little bit of jargon that you have to head to your favorite search engine to find. But I sit in on about half of them myself and get a lot of really good information about things that I&#8217;ve been wondering about, things that looked broken, but actually are functioning exactly the way that they should. And I just didn&#8217;t want them to function that way. And more often than not, I found out that something that I thought was broken, was already identified and being fixed. Those are three great ways to show up and help give feedback that helps make WordPress better and more functional for more people.&nbsp;</p>\n\n\n\n<p>There are also a few other ways that we see people trying to share that feedback that don&#8217;t work quite as well. And I&#8217;m going to touch on a few of them just because it&#8217;s important to know, as you&#8217;re trying to figure out how to get started with this. The first one is just tweeting your frustrations, and I get it like that&#8217;s literally what Twitter is for.</p>\n\n\n\n<p>7:03</p>\n\n\n\n<p>But also it&#8217;s hard to create a block from “I am frustrated, behold my hateful rhetoric.” Not that any of you, my dear listeners, ever tweet hateful rhetoric. Still, that is really hard for anyone to figure out what was actually wrong in that moment. Another thing that is not the most functional way to give feedback is review brigading. The Internet rewards this kind of behavior, but I have found at least for WordPress, those false positives and false negatives can be really confusing for our new users. And the third way, that&#8217;s not our best way, and probably is the least best way, is just by giving up and not telling anyone what broke for you.</p>\n\n\n\n<p>7:45</p>\n\n\n\n<p>I know that I already said it&#8217;s not possible to fix everyone&#8217;s problems. But while it&#8217;s not possible to fix everyone&#8217;s problems the moment they get shared, it&#8217;s also truly impossible to fix any problems that no one knows exist. And so giving up and not sharing an issue so that we can identify it as part of a pattern of problems is probably the least effective way to help us help you get your problem solved.</p>\n\n\n\n<p>8:13</p>\n\n\n\n<p>This brings me back to the question of the value of WordPress users as co creators in the development process. As WordPress grows, both in usage as a CMS and in participation as a community, it&#8217;s important for us to shed the idea that software creation is only about what literally can be done to code or what literally can be done to core or what literally can be done to the CMS. It&#8217;s also important for us to constantly remind ourselves that the best outcomes are the result of collaboration with the people who use WordPress the most. I know that not every type of user we have is showing up to give us feedback about where WordPress doesn&#8217;t work for them. And I would love to see more feedback that helps us to figure out where our patterns are.</p>\n\n\n\n<p>9:03</p>\n\n\n\n<p>So the bottom line is this without user feedback that has some clarity of what was expected versus what happened, the work to make a good choice involves a whole lot of guessing. So since open source software is built by the people who show up, I hope this gives you an idea of how you can show up and help improve the tool that powers your sites.</p>\n\n\n\n<p>9:32</p>\n\n\n\n<p>That brings us to today&#8217;s community highlight every episode or so I share either a great story of WordPress success or a great story of a WordPress contributor who helped some folks along the way. Today&#8217;s <a href=\"https://twitter.com/trishacodes/status/1357382647274762244\">community highlight</a> comes from @trishacodes who shared one of her early to WordPress mentors. She says “@RianRietveld was such an encouragement and helped me find the courage to speak up.” I have had myself many conversations with <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian</a>, and that rings true for me as well.&nbsp;</p>\n\n\n\n<p>10:00</p>\n\n\n\n<p>That brings us to the moment you&#8217;ve all been waiting for, the small list of big things. It&#8217;s actually kind of a medium list. Today, I&#8217;ve got four whole things to share with you all. The first thing on my list is that WordCamp Europe is coming, that will be June 7th through the 10th. It&#8217;s a multi-day online event. I will share in the show notes a link to the main website; there you can get an idea of what will happen, the schedule, and get your hands on some tickets so that you can get it in your calendar and prepare yourselves.&nbsp;</p>\n\n\n\n<p>The second thing I want to share is for all of our polyglots out there. The French team is planning a translation day coming up on April 30. I will share a link to that as well so that you can get an idea of what that takes if you&#8217;re feeling like you want to do some translation work. The third thing I want to share is that the Indian community in Pune actually started a new meetup series. It is a translation work along self-study &#8211; also for all of our polyglots out there. I would love to see as many people as are interested in both learning about how to do translations and certainly translating WordPress get registered for that. A final thing I want to share with you all is that if you are curious about what full site editing features will be included in the 5.8 release, that&#8217;s the WordPress release that&#8217;s coming out in the middle of July, you can check out my recap and recording of the demo that was held with Matt, Matias, and the rest of the team. There’s are also a number of other posts of next step ideas that I will share in the show notes as well.</p>\n\n\n\n<p>11:51</p>\n\n\n\n<p>That, my friends, is your small list of big things. Thank you for joining in today for the WordPress briefing. I&#8217;m your host, Josepha Haden Chomphosy. I&#8217;ll see you again in a couple of weeks!</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, 26 Apr 2021 15:24:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:106:\"WPTavern: Companies Running Competitive Ads Against WordPress May Soon be Banned from Sponsoring WordCamps\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115353\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:257:\"https://wptavern.com/companies-running-competitive-ads-against-wordpress-may-soon-be-banned-from-sponsoring-wordcamps?utm_source=rss&utm_medium=rss&utm_campaign=companies-running-competitive-ads-against-wordpress-may-soon-be-banned-from-sponsoring-wordcamps\";s: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:4644:\"<p>The WordPress Community Team is <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">discussing</a> banning companies from sponsoring WordCamps if they advertise competitively against WordPress. A WordCamp organizing team recently brought the concern to community deputies regarding a potential sponsor that is advertising its product in such a way that it puts WordPress in &ldquo;an unflattering light.&rdquo;</p>\n\n\n\n<p>This particular instance is prompting community leadership to clarify expectations for how sponsors advertise WordPress derivative products &ndash; products built on top of WordPress, such as themes, plugins, or distributions.</p>\n\n\n\n<p>Cami Kaos published a list of the existing expectations for sponsors and those who want to participate in the community&rsquo;s events program. These include items such as no discrimination, no incitement of violence, respecting the WordPress trademark and licensing, and others from the <a href=\"https://make.wordpress.org/community/handbook/wordcamp-organizer/planning-details/fundraising/local-wordcamp-sponsorship/\">WordCamp Organizer Handbook</a>. Kaos posed the following two questions to the community:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><strong>Should the WordCamp and&nbsp;meetup&nbsp;programs accept sponsors, speakers and organizers who engage in&nbsp;competitive marketing against WordPress?</strong></p><p><strong>How should competitive advertising be defined in the WordPress space?</strong></p></blockquote>\n\n\n\n<p>The discussion post did not specify the potential sponsor in question but <a href=\"https://wptavern.com/elementor-raises-eyebrows-with-google-ads-targeting-full-site-editing\">recent campaigns from Elementor</a> meet the criteria of advertising against WordPress with a negative slant. The ads insinuate that WordPress isn&rsquo;t user -friendly or intuitive and that without this particular product WordPress is frustrating. The company has also run ads that co-opt the term &ldquo;full-site editing&rdquo; on Google searches, with Elementor representatives claiming that it is a generic industry term.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Elementor has sponsored events in the past. If the community guidelines are changed to explicitly prohibit advertising that puts WordPress in a negative light, then the company may be required to pull all of its ads that violate the new requirements in order to become a sponsor. </p>\n\n\n\n<p>Bluehost is another company that might come under the microscope for its <a href=\"https://wptavern.com/bluehost-misuses-wordpress-trademark-reigniting-controversy-over-recommended-hosts-page\">recent trademark misuse</a>. Although the company had a meeting to resolve matters with WordPress&rsquo; executive director Josepha Haden, Bluehost still has <a href=\"https://www.youtube.com/channel/UCURv2b4zbEiwN626-T321HQ\">multiple ads</a> running with the <a href=\"https://youtu.be/eqQORI5Ehd0?t=15\">same issue</a>. </p>\n\n\n\n<p>Feedback so far has been minimal. One participant in the discussion mistakenly thought the proposal was referring to competition in general. Andrea Middleton clarified in the comments.</p>\n\n\n\n<p>&ldquo;The question is whether WordPress events should co-promote or endorse people and companies that are competing&nbsp;<strong>against WordPress itself</strong>,&rdquo; Middleton said.</p>\n\n\n\n<p>&ldquo;For example, if someone is running ads saying &lsquo;WordPress is terrible, use our product instead,&rsquo; or even &lsquo;WordPress is terrible, but our&nbsp;plugin&nbsp;makes it good&rsquo; do we want to include them as a sponsor for WordPress events?&rdquo;</p>\n\n\n\n<p>Defining competitive advertising to exclude all forms criticism may be too strong of a line but there should be guidelines that cover more egregious cases where a company is disparaging WordPress for the purpose of exploiting its community. </p>\n\n\n\n<p>&ldquo;Criticism can be healthy and good marketing when done in good faith and with a tool that truly addresses a user need,&rdquo; Mark Root-Wiley said. &ldquo;What makes criticism objectionable is when it strays past details of software and into harmful criticism of people and communities, and it seems like the existing standards cover that.&rdquo;</p>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/community/2021/04/19/discussion-companies-who-run-competitive-ads-against-wordpress-and-apply-to-sponsor-wordcamps/\">discussion</a> will be open until April 29, 2021, when comments will be closed and the discussion will move to final review. </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, 23 Apr 2021 22:01:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:78:\"WPTavern: Plausible Analytics Adds Statistics Dashboard to the WordPress Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115526\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:201:\"https://wptavern.com/plausible-analytics-adds-statistics-dashboard-to-the-wordpress-admin?utm_source=rss&utm_medium=rss&utm_campaign=plausible-analytics-adds-statistics-dashboard-to-the-wordpress-admin\";s: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:5460:\"<p class=\"has-drop-cap\">Earlier this week, <a href=\"https://plausible.io/\">Plausible Analytics</a> released version 1.2 of its <a href=\"https://wordpress.org/plugins/plausible-analytics/\">WordPress plugin</a>. The update includes a missing feature that should make it more appealing to end-users. The plugin now supports an &ldquo;embedded mode&rdquo; that displays a site&rsquo;s stats directly in the WordPress admin interface.</p>\n\n\n\n<p>Without counting the self-hosted users of its open-source project, Plausible Analytics recently surpassed 14,000 users on its hosted service. That is a step forward in its two-year path toward making a dent in the analytics market.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve taken 1.4 billion pageviews directly from Google Analytics to date,&rdquo; said Plausible&rsquo;s co-founder Marko Saric&rdquo;. We&rsquo;re about to reach 3,000 paying subscribers by the end of the week.&rdquo;</p>\n\n\n\n<p>It is an exciting moment for the small, EU-based team. However, the work does not stop there. The plugin has gained 500 active installs after its recent launch. It is a small number, but Saric seems happy that the plugin is simply showing up in the directory when people search for &ldquo;web analytics&rdquo; at this point, hoping that it will bring more WordPress users around to a privacy-first solution.</p>\n\n\n\n<p>It is a slow burn and organic growth. However, WordPress users are stepping up and filing tickets through the plugin&rsquo;s <a href=\"https://github.com/plausible/wordpress/issues\">GitHub repository</a> now. Activity and feedback are the lifeblood of young products, giving developers goals to reach toward.</p>\n\n\n\n<p>The latest version of the Plausible Analytics plugin gives users access to their stats dashboard from the WordPress admin. Hooking it up is as simple as generating a shared link via the service&rsquo;s website.</p>\n\n\n\n<img />Generating a shared link from the Plausible Analytics site.\n\n\n\n<p>Earlier versions of the plugin did not include this functionality because the team was still building their public API, a necessary feature for sharing the data outside of their system.</p>\n\n\n\n<p>The new stats API is not just for the plugin. Developers can build on top of the system, retrieve stats, and present them however they want. <a href=\"https://dailytics.com/\">Dailytics</a>, a third-party service, already integrates with it and sends out daily analytics emails.  The team has <a href=\"https://plausible.io/docs/stats-api\">detailed documentation</a> on using it.</p>\n\n\n\n<img />Realtime stats embedded into the WordPress admin.\n\n\n\n<p>The latest version of the self-hosted Plausible script is available too. It features all of the same capabilities. However, the WordPress plugin does not yet support embedded mode for analytics just yet.</p>\n\n\n\n<p>&ldquo;The development of the WordPress plugin started before this self-hosted release was completed, so WP dashboard for self-hosters is not part of the 1.2 plugin release, unfortunately,&rdquo; said Saric. &ldquo;I&rsquo;ve now spoken with Mehul Gohil, who is the WordPress developer that has helped us with the plugin, and we will try to do a mini-release of the plugin in the upcoming days to allow the self-hosters to get their stats within the WordPress interface too.&rdquo;</p>\n\n\n\n<h2>Version 1.3 and Beyond</h2>\n\n\n\n<p class=\"has-drop-cap\">Saric said his team already has a roadmap for the next version of the plugin. Several new features should land in version 1.3, such as excluding authors and editors being counted in the stats. This option exists for administrators at the moment.</p>\n\n\n\n<p>&ldquo;The second one is a widget that gives a quick overview of the most import metrics such as unique visitors and pageviews, so you don&rsquo;t need to go into the analytics section if you don&rsquo;t want to,&rdquo; he said.</p>\n\n\n\n<p>The team is also looking at out-of-the-box integration with some popular third-party plugins to support event tracking. At the moment, this is primarily a developer-friendly feature because it requires a bit of JavaScript to track signups and conversions. Making it work by default is the goal.</p>\n\n\n\n<p>&ldquo;We&rsquo;ve already done some work to make it easier, such as the recent introduction of the ability to group pages,&rdquo; said Saric. &ldquo;For instance, you can now group WooCommerce checkout pages for your eCommerce, so now we just need to enable that out of the box in the plugin.&rdquo;</p>\n\n\n\n<p>They are shooting for a self-hosted or proxied version of their script from the plugin in the long term. This would allow users to run the script from their domain directly as a first-party connection, providing more accurate data. This is a manual process right now, but the team wants the process to be easy for those users going down the self-hosted path.</p>\n\n\n\n<p>&ldquo;Obviously, in addition to the WordPress-specific improvements, we&rsquo;re constantly working on improving Plausible Analytics itself,&rdquo; said Saric. &ldquo;WordPress users automatically get all of those into their dashboard as we improve and update the main site. No need to wait for WordPress plugin updates for those to make it into the WordPress dashboard. One metric we&rsquo;re hoping to release over the upcoming weeks is the inclusion of states and city data in addition to the countries that we have now. Many of our users have asked for this, so we&rsquo;re prioritizing it in our development.&rdquo;</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, 23 Apr 2021 15:49: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:81:\"WPTavern: With Some Hits and Misses, the Guten Blog WordPress Theme Has Potential\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115543\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:205:\"https://wptavern.com/with-some-hits-and-misses-the-guten-blog-wordpress-theme-has-potential?utm_source=rss&utm_medium=rss&utm_campaign=with-some-hits-and-misses-the-guten-blog-wordpress-theme-has-potential\";s: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:5677:\"<p class=\"has-drop-cap\">Any time I see a new block-ready WordPress theme, I am like a toddler in a toyshop. I cannot wait to bring it home, rip off the packaging, and play with it. Sometimes it is the type of fun that will create lasting, years-long memories. Other times, the toy is not all it is cracked up to be. It does not deliver on the promises on its packaging. It is too hard to play with or just not what you expected. You discard it and move on to one of your other trusted toys, ones with guaranteed fun built-in.</p>\n\n\n\n<p>The latter feeling is where I am at with <a href=\"https://wordpress.org/themes/guten-blog/\">Guten Blog</a> by Avid Themes. I want to love it. It has many elements that could make for a great theme. At first glance, I even believed it could be one of only a handful of quality, block-supported themes in the directory.</p>\n\n\n\n<img />Guten Blog default demo homepage.\n\n\n\n<p>However, I was that kid all over again, let down by the shiny veneer of colorful packaging. The upside is that there is potential. It has all the elements needed to be among the great blogging themes. With more work, it could go from mediocre to top-10 material.</p>\n\n\n\n<p>The most disappointing thing about the theme is the following homepage section:</p>\n\n\n\n<img />Common three-box design pattern.\n\n\n\n<p>It is a typical design on the web today &mdash; a section containing some intro text with three boxes. I do not dislike the design. The problem is how it is handled by the theme. It relies exclusively on the <a href=\"https://wordpress.org/plugins/gutentor/\">Gutentor plugin</a> to build this, and there are zero reasons to do so. The block editor is capable of handling this on its own.</p>\n\n\n\n<p>This would have been an easy win for the theme to package this section design as a custom block pattern.</p>\n\n\n\n<p>For some blocks, I get it; WordPress&rsquo;s built-in blocks do not cut it yet. For example, the various post-related blocks do not exist yet. Of course, the Query block is slated to land in WordPress 5.8. That would be an opportune moment to make the switch.</p>\n\n\n\n<p>However, the above section is representative of all the imported demo content. Everything from columns to quotes to paragraphs &mdash; yes, paragraphs &mdash; is built with Gutentor&rsquo;s blocks.</p>\n\n\n\n<p>One of my primary fears with theme developers is that they will continue to over-rely on plugins for basic features that exist in WordPress. This teaches end-users to also rely on these plugins, and it is a shame. This creates less flexibility for users, tying basic content to a third-party tool.</p>\n\n\n\n<p>There are some stunning <a href=\"https://avidthemes.com/preview/?product_id=gutenblog-free-1\">pre-made demos</a> that users can import. In total, the theme offers 18 options. Seven of those are available for free. The other demos are part of the <a href=\"https://avidthemes.com/guten-blog-pro/\">&ldquo;pro&rdquo; package</a>, ranging from $49.99 to $79.99 depending on the number of sites the customer wants support and updates.</p>\n\n\n\n<img />Pre-made, importable demos.\n\n\n\n<p>In particular, I am a fan of its third free option for lifestyle-type blogs:</p>\n\n\n\n<img />Lifestyle-type free, importable demo.\n\n\n\n<p>The importable demos are the bright spot of the theme, most of which showcase various homepage options. The development team simply bypassed the tools available in core WordPress. There are no block styles or patterns, and the demos offer a plethora of opportunities to flesh out custom designs for users to insert with one click.</p>\n\n\n\n<p>The theme technically works without extra plugins. It is billed as a blogging theme, so the hope is that it holds up in that regard. With a content size between 730 &ndash; 800 pixels and text of 16 pixels, it does not. The text is practically unreadable when it comes to long-form content. It may as well be a jumbled mass of words where you continually lose your place from line to line.</p>\n\n\n\n<p>This is not <em>Justin-is-having-a-bad-day-so-let&rsquo;s-dump-on-a-theme</em>. I genuinely love the potential Guten Blog has. I want it to be better. The overall design is something I could imagine myself using on various websites I am involved with. Its font choices, minimalist layout, and generous use of whitespace are right up my alley.</p>\n\n\n\n<p>However, it has some issues. For example, it updates a database option for a third-party plugin on every page load (I am not sure how that made it through the review process). It also missed a lot of opportunities to showcase the core block editor.</p>\n\n\n\n<p>Other issues are with the theme&rsquo;s primary admin notice. The small text that reads &ldquo;Clicking on get started will activate Advanced Import&rdquo; felt shady. Literally, the text was intentionally styled with a 10-pixel font size, which was incredibly difficult to read, so tough that I did not catch it until I unwittingly began installing a third-party plugin. It also installed Gutenblog Demo Import and the Gutentor plugin without authorization at that moment.</p>\n\n\n\n<p>These are fixable issues. I hope the theme development team can take my complaints and build something that eventually exceeds my expectations. The potential is there.</p>\n\n\n\n<p><strong>Update (April 26):</strong> I did not notice during the initial review, but I have since confirmed that this theme changed my site title to &ldquo;WP GutenBlog&rdquo; at some point in the process, likely during the demo import.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><strong>Disclosure:</strong> This theme makes use of a library I built for breadcrumbs. It is using a version that is at least three years out of date.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 22 Apr 2021 23:12:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:113:\"WPTavern: Google Delays Page Experience Ranking Signal Rollout until June 2021, Adds New Report to Search Console\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115367\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:269:\"https://wptavern.com/google-delays-page-experience-ranking-signal-rollout-until-june-2021-adds-new-report-to-search-console?utm_source=rss&utm_medium=rss&utm_campaign=google-delays-page-experience-ranking-signal-rollout-until-june-2021-adds-new-report-to-search-console\";s: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:2764:\"<p>Google <a href=\"https://developers.google.com/search/blog/2021/04/more-details-page-experience\">announced</a> this week that it will be delaying the rollout of the new page experience ranking signal to mid-June 2021. Page experience will be included along with existing search signals like&nbsp;mobile-friendliness,&nbsp;safe-browsing,&nbsp;HTTPS-security, and&nbsp;intrusive interstitial guidelines. The rollout, previously planned to begin in May, will be gradual and page experience will not be in full force as a ranking signal until August.</p>\n\n\n\n<p>In the meantime, Google has been elaborating on <a href=\"https://support.google.com/webmasters/answer/10218333\">how page experience is evaluated</a> and has published an <a href=\"https://support.google.com/webmasters/thread/86521401\">FAQ</a> page with common questions they have been answering:</p>\n\n\n\n<ul><li>If I built AMP pages, do they meet the recommended thresholds?</li><li>Can a site meet the recommended thresholds without using AMP?</li><li>Is there a difference between desktop and mobile ranking?</li></ul>\n\n\n\n<p>Google also announced a new&nbsp;<a href=\"https://support.google.com/webmasters/answer/10218333\">Page Experience report</a> in the Search Console that displays the percentage of URLs with good page experience and search impressions over time. Currently, page experience only applies to mobile search. Good URLs refers to the percentage of mobile URLs with both&nbsp;Good&nbsp;status in Core Web Vitals and no mobile usability issues according to the Mobile Usability report.</p>\n\n\n\n<img />\n\n\n\n<p>Google News will also be getting some important AMP-related updates during the rollout, with the removal of the AMP badge icon and the inclusion of non-AMP content in the mobile apps:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>As part of the page experience update, we&rsquo;re expanding the usage of non-AMP content to power the core experience on&nbsp;<a href=\"https://news.google.com/\">news.google.com</a>&nbsp;and in the Google News mobile apps.</p><p>Additionally, we will no longer show the AMP badge icon to indicate AMP content. You can expect this change to come to our products as the page experience update begins to roll out in mid-June.</p></blockquote>\n\n\n\n<p>Non-AMP pages will also be eligible to appear in the Top Stories carousel as another planned part of this update.</p>\n\n\n\n<p>Google Search has been updated to include support for signed exchanges (SXG) on all pages, previously only available on AMP-generated pages. This allows for pre-fetching resources, such as HTML, JavaScript, CSS, images, or font, in order to render pages faster. <a href=\"https://web.dev/signed-exchanges/#tooling\">Web.dev</a> has a guide and tools for monitoring and debugging SXG.</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, 22 Apr 2021 14:26:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:96:\"WPTavern: Themes Set Up for a Paradigm Shift, WordPress 5.8 Will Unleash Tools To Make It Happen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:235:\"https://wptavern.com/themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen?utm_source=rss&utm_medium=rss&utm_campaign=themes-set-up-for-a-paradigm-shift-wordpress-5-8-will-unleash-tools-to-make-it-happen\";s: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:9813:\"<p class=\"has-drop-cap\">For much of WordPress&rsquo;s history, the foundational elements of building a theme have been slow to change. Every so often, developers would get a new feature, such as child themes, featured images, nav menus, and template parts. Each of these was epic in its own way. However, theme authors had ample time to adapt to these single feature introductions.</p>\n\n\n\n<p>When the block editor landed, it did so with a bang. Love it or hate it, it shifted how we think about design for the web. It was not one of those one-off enhancements, regardless of how many times we were told it would &ldquo;just work&rdquo; with any theme. It sometimes does not <em>technically</em> break things. Support and integration are necessary for an ideal user experience, and theme authors have been slow to catch up.</p>\n\n\n\n<p>With WordPress 5.8, theme authors are gearing up for another paradigm-shifting set of changes. Josepha Haden Chomphosy, WordPress Executive Director, announced last week that several Full Site Editing (FSE) sub-components will begin <a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">shipping with the next release</a>.</p>\n\n\n\n<p>In the <a href=\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress\">latest episode</a> of the WP Tavern Jukebox podcast, Nathan Wrigley hosted guest Anne McCarthy. He asked her to calm people&rsquo;s fears over upcoming changes. &ldquo;So, as an example, let&rsquo;s imagine that we&rsquo;re a theme developer. We may be getting concerned that themes are going to become a thing of the past, that the livelihood that we&rsquo;ve created for ourselves is going to disappear before our eyes.&rdquo;</p>\n\n\n\n<p>It is a common question. Since the inception of Gutenberg, particularly its features that fall under FSE, themers have wondered if there would be a place at the table for them. If WordPress is moving toward a grander page-building experience, where do themes fit in? If users can change the layout or manipulate all of the styles, what is the theme&rsquo;s job?</p>\n\n\n\n<p>These questions are finally getting some answers. We can see the real-world changes introduced in recent months. They paint a much clearer picture, defining the role of themes in WordPress&rsquo;s future.</p>\n\n\n\n<p>&ldquo;And for theme authors, themes are going to be so important in a full site editing world,&rdquo; said McCarthy. &ldquo;And one of the things I am so excited about is that there&rsquo;s going to be a ton of what they&rsquo;re calling&hellip;the idea of these hybrid universal themes that can work with, for example, template editing.&rdquo;</p>\n\n\n\n<p>She is referring to a <a href=\"https://github.com/WordPress/gutenberg/issues/29024\">recent discussion</a> that <a href=\"https://github.com/WordPress/gutenberg/issues/29024#issuecomment-792796711\">makes some distinctions</a> between universal and hybrid themes. Essentially, universal themes would work in both a classic or block editor context, depending on what the user chose. A hybrid might support parts of the block experience but have a path to becoming a universal theme that fully caters to any user down the road.</p>\n\n\n\n<p>While this does not wholly address theme authors&rsquo; concerns, these are the building blocks that Gutenberg contributors are thinking about. First and foremost, they want a solid user experience. However, the discussions show that they also recognize that theme developers need to opt into new things at their own pace, supporting features as they understand them and learn how to implement them. This provides a path forward for traditional themes to transition into the new era and be built from scratch with new tools.</p>\n\n\n\n<p>Themes may well be more vital to WordPress&rsquo;s future than they were in the past.</p>\n\n\n\n<h2>New Tools Coming in WordPress 5.8</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">The site editor and global styles features are not planned to ship with WordPress 5.8. However, the upcoming release is set to introduce some powerful tools for theme authors. This will be a pivotal moment for theme development companies that want to make their mark in the space. The right team with a forward-looking mindset stands to disrupt the market and make millions. And, there is room for the authors who just want to build cool stuff.</p>\n\n\n\n<p>It all starts with the new template-related blocks that should be enabled in the next major update. In particular, the Query block provides an alternative to what was formerly only possible via code and carefully constructed theme options. Coupling it with existing features opens us to a world of possibilities.</p>\n\n\n\n<p>For example, I chose a theme from the most popular list on WordPress.org that looked to have one of the most complex query and loop setups of the bunch. The following is the homepage of <a href=\"https://wordpress.org/themes/enternews/\">EnterNews</a>:</p>\n\n\n\n<img />EnterNews WordPress theme homepage.\n\n\n\n<p>Anyone familiar with theme development can tell you that it would take at least eight different queries to create that homepage design without looking at the code. The only way to build that and allow users to customize which posts appear is through a series of theme options (probably category-based dropdown select boxes).</p>\n\n\n\n<p>If the Query block ships with WordPress 5.8 as expected and is also enabled for any theme, this layout is suddenly possible directly from the block editor &mdash; <em>no site editor necessary</em>. Via block patterns, users can insert these &ldquo;sections&rdquo; of different Query blocks in their page and reorder them. However, it requires buy-in from the theme author.</p>\n\n\n\n<p>As I said earlier, theme authors have been slow to adopt block-related features as a whole. Undoubtedly, the system for the EnterNews homepage is already getting the job done. And, if it works for the theme&rsquo;s current user base, there may seem to be little incentive to change.</p>\n\n\n\n<p>However, there are real benefits from a development angle to transitioning to a new system. The most obvious is that it requires little code compared to the PHP needed for building customizer options. Block patterns are little more than HTML with bits and pieces of JSON configuration in the mix. Developers can literally build them from the editor and copy/paste the code part.</p>\n\n\n\n<p>By writing less code, it lowers the potential for security issues and other bugs. Theme authors can also be less rigid in their design, allowing users to move pieces of the layout around.</p>\n\n\n\n<p>The Query block is not the only one slated for inclusion in 5.8 outside of a block-based theme context. The Navigation, Site Title, Site Logo, and more are ready to ship. Most such blocks are vital components for building an entire page. Theme authors could start handing over the tools for building complex landing pages on launch day this July.</p>\n\n\n\n<h2>Stepping Stones</h2>\n\n\n\n<img />\n\n\n\n<p class=\"has-drop-cap\">Not every theme author needs to step up and attempt to revolutionize the theme space &mdash; though I am looking forward to those who do. Others might want to take a more measured approach. FSE is a set of many sub-components, some of which are shipping with WordPress 5.8. Many of these do not require developers to opt into them. They will &ldquo;just work.&rdquo; <em>Sort of. Mostly.</em></p>\n\n\n\n<p>Users will be able to switch to a template-editing mode directly from the block editor. From there, they can create entire page templates of their choosing. Theme authors can either stand in their way by not styling for blocks or make the experience more enjoyable.</p>\n\n\n\n<p>The widgets screen and customizer will allow end-users of traditional themes to insert blocks in any of their sidebars. Some theme authors will need to account for this in their designs. The HTML output might throw off some layouts. For those who are not ready, they should disable block-based widget support.</p>\n\n\n\n<p>The most crucial tool, however, is entirely optional for theme authors. That is the introduction of <code>theme.json</code> support. The <code>theme.json</code> file is the cornerstone of future theme development. It acts as a config file for block settings and styles, allowing theme authors to set up the defaults for anything.</p>\n\n\n\n<p>In a nutshell, theme developers can set up any of the block options from this file, and those options are automatically handled in the editor and on the front end.</p>\n\n\n\n<p>Themes can also define defaults for block options that do not yet exist in the interface. The system will automatically output these as styles, even if users cannot change them in 5.8.</p>\n\n\n\n<p>Again, this means less code work for themers in the long run. While there will likely always be a place for custom CSS, some themes could essentially be built from <code>theme.json</code> configurations. That is not possible today. However, theme authors can start taking advantage of this tool.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Themes are not going the way of the dinosaur. All of that overly complex PHP code work necessary in the past might just be. The shift is putting themes back into their proper place: design. Previously available tools such as patterns and styles coupled with the new pieces like <code>theme.json</code> and template-related blocks will be the backbone of the new system. It is all starting to come together.</p>\n\n\n\n<p>The transition will take some time, and each themer will need to decide for him or herself how much they want to take on. But, the time is near. I might even crank up the old code editor and start putting together a project myself. There has never been a better time to be excited about theme development than now.</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, 21 Apr 2021 23:32: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:14:\"Justin Tadlock\";s: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:69:\"WordPress.org blog: Become an Early Adopter With the Gutenberg Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10164\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"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:\"https://wordpress.org/news/2021/04/become-an-early-adopter-with-the-gutenberg-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4168:\"<p><strong><em>Copy by Anne McCarthy (<a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a>) and Design by Mel Choyce-Dwan (<a href=\"https://profiles.wordpress.org/melchoyce/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>melchoyce</a>)</em></strong></p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2021/04/Frame-1.png?resize=632%2C354&ssl=1\" alt=\"\" class=\"wp-image-10165\" width=\"632\" height=\"354\" /></div>\n\n\n\n<p>In WordPress circles (whether it’s your local meetup, a trusted publication, or your networking group), you may have heard terms like Core Editor, Gutenberg, and the Block Editor used interchangeably over the last four years. And if you’re following contributor work on the project itself, you may also have heard some additional nuances—Gutenberg plugin, Gutenberg, or Block Editor.&nbsp;</p>\n\n\n\n<p>It can get a little confusing, so let’s take a look at four terms that will help you find your way:&nbsp;</p>\n\n\n\n<ul><li>WordPress &#8211; WordPress refers to the open source software but also to the community that surrounds it.&nbsp;</li><li>Gutenberg &#8211; Gutenberg is the code name for a multi-year project to update editing areas for the WordPress software.</li><li>Editor &#8211; The editor refers to a section of the software that allows you to update content on your site’s posts and pages.&nbsp;</li><li>Gutenberg Plugin &#8211; The Gutenberg plugin is where early work to update the editor is shared.</li></ul>\n\n\n\n<h2>The Gutenberg Plugin</h2>\n\n\n\n<p>Now that we’ve cleared up the definitions, let’s talk about the plugin. When might you use it? What would you use it for? You can think of it as an early access program or a “WordPress lab.” The plugin is updated every two weeks, which means that bugs that have been reported are often fixed and that what you see changes rapidly.&nbsp;</p>\n\n\n\n<p>The Gutenberg plugin also contains features that aren’t yet ready for their WordPress debut but are ready for curious users to test and provide feedback. This is a common practice that allows stable features to make it to your site in WordPress releases while allowing experimental features to be tested and refined. To get a sense of whether using the Gutenberg Plugin might be something you want to explore to get access to earlier features, check out the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">“What’s New” release posts </a>and the <a href=\"https://make.wordpress.org/core/tag/core-editor-improvement/\">Core Editor Improvement post series</a>. </p>\n\n\n\n<h2>Do I Need the Plugin to Use Gutenberg?</h2>\n\n\n\n<p>It depends on your comfort level! Generally speaking, it is not recommended to use the plugin on a site that has launched and is actively in use unless you’re very comfortable with the code side of WordPress. Fortunately, each WordPress release comes ready to go with <a href=\"https://developer.wordpress.org/block-editor/handbook/versions-in-wordpress/\">multiple versions of the Gutenberg plugin</a>.&nbsp;</p>\n\n\n\n<p>But if you are a keen beta tester who loves reporting feedback, or you feel comfortable navigating how to opt-in/out of the experimental aspects of the plugin, here are a few reasons you might want to dig into what the Gutenberg Plugin has to offer:</p>\n\n\n\n<ul><li>Test new features and give helpful feedback. For example, you can use the plugin to <a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/how-to-test-fse/\">help test Full Site Editing</a>.&nbsp;</li><li>Get early access to the latest &amp; greatest while navigating when to opt-in or out of experimental features.&nbsp;</li><li>Prepare for the future whether you’re a theme author, plugin developer, agency owner, etc.&nbsp;</li></ul>\n\n\n\n<p><em>Do you use the Gutenberg plugin and </em><a href=\"https://github.com/WordPress/gutenberg/issues\"><em>share feedback on GitHub</em></a><em>? Thank you! This kind of feedback is what helps ensure stability in what’s shipped in WordPress releases.&nbsp;</em></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p></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, 21 Apr 2021 21:03:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:77:\"WPTavern: #2 – Anne McCarthy on How Full Site Editing Will Impact 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:48:\"https://wptavern.com/?post_type=podcast&p=115391\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/podcast/2-anne-mccarthy-on-how-full-site-editing-will-impact-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=2-anne-mccarthy-on-how-full-site-editing-will-impact-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:68360:\"<h2 class=\"is-style-default\">About this episode.</h2>\n\n\n\n<p>So the podcast today features Anne McCarthy. Anne is Developer Relations Wrangler for Automattic. Her work is focussed on the WordPress.org space, and she is leading the Full Site Editing Outreach Program.</p>\n\n\n\n<p>Full Site Editing is an endeavour to make it easier to manage how your WordPress website works. It&rsquo;s hoped that tasks which once required a fairly technical understanding of the WordPress code, will become available to all. Creating headers and footers, deciding what information to pull from the database and where it should be displayed. These will become part of the Block Editor interface. Complexity replaced by simplicity; or at least that&rsquo;s the goal.</p>\n\n\n\n<p>This, as you might imagine, is not an easy task. Now that WordPress is pushing beyond 40% of the web, there&rsquo;s a lot to consider, and that&rsquo;s what Anne is doing. She&rsquo;s part of the team trying to work out how this might look, how it should work and when it will be ready.</p>\n\n\n\n<p>We start off with an introduction from Anne and how she became involved with WordPress and the Full Site Editing initiative in particular.</p>\n\n\n\n<p>Then the discussion moves to an explanation of what Full Site Editing hopes to achieve. Which areas of a website are intended to be made available with Full Site Editing?</p>\n\n\n\n<p>We then get into the specific details of what constraints the project faces; and there are many points to consider. Backwards compatibility, accessibility and how commercial and free plugins feed into the project roadmap.</p>\n\n\n\n<p>Towards the end of the podcast we get into the process of how Full Site Editing is moving forwards, who is making the decisions and how the WordPress community can get involved in shaping WordPress&rsquo; future through endeavours like Anne&rsquo;s Outreach Program.</p>\n\n\n\n<p>It&rsquo;s a very timely episode. Many of the areas discussed will be landing in WordPress soon.</p>\n\n\n\n<p>If any of the points raised here resonate with you, be sure to leave a comment below.</p>\n\n\n\n<h2 class=\"is-style-default\">Useful links.</h2>\n\n\n\n<p>Full Site Editing is moving fast. Since the recording of this episode, there&rsquo;s been some movement. To get the latest information and learn more, see the following links:</p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\" target=\"_blank\">Full Site Editing Outreach Program</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=aPPzATDkHzg\" target=\"_blank\" rel=\"noreferrer noopener\">Full Site Editing for WordPress Overview</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\" target=\"_blank\">Full Site Editing Go/No Go | April 14, 2021</a></p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/core/2021/04/20/full-site-editing-go-no-go-next-steps/\" target=\"_blank\">Full Site Editing Go/No Go: Next steps</a></p>\n\n\nTranscript<div><div class=\"chat-transcript\"><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:00:00]</div> <div class=\"chat-text\"><p>Welcome to the second edition of the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Our aim here is to create a podcast and transcript for people who are interested in WordPress and the WordPress community. We&rsquo;re going to create one episode each month, for the time being, but that might change in the future.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We&rsquo;d love to hear your feedback about the podcast. Perhaps there&rsquo;s a subject that you&rsquo;d like us to feature, a person who you think would make a great guest or anything else that comes to mind. We&rsquo;re very open to suggestions so long as it&rsquo;s to do with WordPress and the wider WordPress community. You can do that by going to WP Tavern dot com forward slash contact forward slash jukebox. And there you&rsquo;ll find a contact form for you to complete. Once again, WP Tavern dot com forward slash contact forward slash jukebox, and thanks in advance if you reach out.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Okay, so the podcast today features Anne McCarthy. Anne is a developer relations wrangler for Automattic. She focuses on the wordpress.org space and is leading the full site editing outreach program. Full site editing is an endeavor to make it easier to manage how your WordPress website works. It&rsquo;s hoped that tasks, which once required a fairly technical understanding of the WordPress code will become available to all. Creating headers and footers, deciding what information to pull from the database and where it should be displayed.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>These will become part of the block editor interface. Complexity replaced by simplicity, or at least that&rsquo;s the goal. This, as you might imagine, is not an easy task. Now that WordPress is pushing beyond 40% of the web, there&rsquo;s a lot to consider, and that&rsquo;s what Anne is doing. She&rsquo;s part of the team, trying to work out how this might look, how it should work and when it will be ready.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We start off with an introduction from Anne and how she became involved with WordPress and the full site editing initiative in particular. Then the discussion moves to an explanation of what full site editing hopes to achieve, which areas of a website are intended to be made available with full site editing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>We then get into the specific details of what constraints the project faces, and there are many points to consider. Backwards compatibility, accessibility, and how commercial and free plugins feed into the project roadmap. Towards the end of the podcast, we get into the process of how full site editing is moving forwards, who is making the decisions and how the WordPress community can get involved in shaping WordPress&rsquo;s future through endeavors like Anne&rsquo;s outreach program.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>It&rsquo;s a very timely episode. Many of the areas discussed will be landing in WordPress soon. If any of the points raised here resonate with you, be sure to head over and find the post at wptavern dot com forward slash podcast, and leave a comment there. And so without further delay, I bring you Anne McCarthy.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>I am here with Anne McCarthy, Anne welcome to the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:03:55]</div> <div class=\"chat-text\"><p>Thank you so much for having me.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:03:57]</div> <div class=\"chat-text\"><p>You&rsquo;re very, very welcome. Now it&rsquo;s a regular question, I often ask them at the beginning of such podcasts, but I think it&rsquo;s important that we lay the foundations of who you are and how you&rsquo;ve come to be on the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>Would you mind giving us a little bit of backstory about how it is that you came to be on this podcast today? What&rsquo;s your relationship with WordPress and perhaps tell us what the role is that you have currently?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:04:20]</div> <div class=\"chat-text\"><p>Great question. It&rsquo;s hard to succinctly sum up who I am, but I&rsquo;ll give it a try. I first got started with WordPress in 2011 as a freshmen in college, and I was using blogger for many years before that to get out all my feelings on the internet as a millennial does.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And eventually, it turned into three years working at the university and their ITS department, which led me eventually to finding out about Automattic. In 2014, I joined them as a happiness engineer and very recently, almost exactly a year ago, switched into a developer relations wrangler role focused on the wordpress dot org community. And currently part of why I&rsquo;m here today is cause I&rsquo;m spearheading the full site outreach program. So I&rsquo;m here to talk about that and talk about full site editing and all the fun stuff that&rsquo;s happening. Cause I know it&rsquo;s a lot to keep up with.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:05:08]</div> <div class=\"chat-text\"><p>Yeah, there is a lot to keep up with, but it is a really interesting episode.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>There&rsquo;s an awful lot to say when we&rsquo;re recording this, in the month of April 2021, this episode will probably air shortly after we record it, and there&rsquo;s an awful lot that has been going on, but there&rsquo;s an awful lot to happen during the course of the rest of this year. And we know that there&rsquo;s a lot of change coming.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>First of all, just rewinding the clock. Would you just like to try and sum up what the ultimate ambition of the full site editing project is? I know that there may be things about that roadmap which change things you wish had been included that probably won&rsquo;t get included, but just sum it up. What is the full intention of the project?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:05:48]</div> <div class=\"chat-text\"><p>That&rsquo;s a great question. I would simply say it&rsquo;s to empower users more and bring WordPress to the future. There&rsquo;s a reason these projects are taking so long. It really is about planting seeds for decades to come. And it&rsquo;s something that Matt, the co-founder I really admire in him as he thinks about those decades.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And so this is a part of that push into using blocks as a paradigm into empowering users, more and bringing WordPress to the future.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:06:10]</div> <div class=\"chat-text\"><p>Okay. So it&rsquo;s all about creating websites with blocks. What kind of areas is it getting into? What is it going to empower us to do? What things in the future will we be able to do inside the block editor?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:06:24]</div> <div class=\"chat-text\"><p>Yeah, so everything you can edit any part of a global style on your site. So if you want to have every font color, be one thing, you can quickly change it. Even by block, you&rsquo;ll be able to change things by block, which is really exciting to have a global point of view of your site, and to be able to actually customize it to your liking unlocks things.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>There was recently a test that we did around, the 404 page. Normally that&rsquo;s something that a theme author decides. And you&rsquo;re locked into it, and if you want to change it, you have to go digging through the code. With full site editing, you can actually go straight ahead and customize it to your liking, make it real fun, make it really clever and make it really serious.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Like you can do whatever you want with that. So a lot of template editing that normally you wouldn&rsquo;t have access to. So even editing, like if you land on your blog page, you can actually adjust how that looks, what shows up, what doesn&rsquo;t, in a really powerful way. I try and talk about the tangible aspects of it, but there&rsquo;s also a lot underneath the hood.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s a lot of design tools for theme authors as well. That there&rsquo;ll be able to hook into that ideally will make it much easier to create themes and to focus more on the aesthetics and the experience rather than on coding up the basics. So there&rsquo;s a lot that I think across the board, whether you&rsquo;re a user or a theme developer or a plugin author, there&rsquo;s a lot to be excited about in the future.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:07:34]</div> <div class=\"chat-text\"><p>One of the things that keeps coming on my radar is the comparison between what we&rsquo;ll call page builders, these plugins, or perhaps it&rsquo;s a theme we&rsquo;ve seen lots of commercial and free products available in the WordPress community, which enables you to achieve many of the goals that the full site editing hopes to achieve. So templates for this templates for that. Headers, footers, you can have global color palettes and all of the things, and it can be done within their interface. I guess the thing about those products is they are created by a team of developers and they are released presumably when they&rsquo;re mature and they&rsquo;re ready to go and the company believe that it&rsquo;s now suitable and people will purchase it or use it and deploy it. Now you&rsquo;ve got a very different set of constraints that you have to work within. And I think highlighting what those constraints are, would be really useful to give people some context as to why it isn&rsquo;t where some of these other solutions might be, because you&rsquo;ve got many, many things to be thinking about in the background. So if we just get into that, maybe one thing at a time, do you want to just rattle off a list of things that you&rsquo;ve got to be concerned about that perhaps we didn&rsquo;t know you needed to be concerned about.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:08:48]</div> <div class=\"chat-text\"><p>Yeah. I&rsquo;ll start with the most obvious ones, which is we&rsquo;re building things so that other people can build upon it, including page builders. So I think that&rsquo;s something that often gets overlooked. Like some of our audience members are these page builders. So it&rsquo;s an interesting dynamic there because it really is about that foundational level. Anyway, 40%, the internet, just the diversity of ways that people use WordPress, whether it&rsquo;s multi-site or what have you, there&rsquo;s a lot to consider.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Then you add in internationalization, which is part of like future phase four. Accessibility is a huge issue. Something that really needs to be thought about including backwards compatibility, and that&rsquo;s another. A lot of page builders could easily say, hey, update to this version after this, x Y and Z will no longer be supported. Doing that with 40% of the internet is huge.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Just recently actually, I did some outreach because in 5.2, which is many releases ago, some smaller APIs were deprecated. We&rsquo;re finally removing them from the Gutenberg plugin. And there were still three plugin authors who were using these APIs, and I reached out to them, let them know and made sure they were aware that this was coming, but that&rsquo;s something that a page builder is not building the same APIs that are going to be used across the internet in the same way.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s a lot of just scale that I think has to be thought of, which is partly why things get pulled from releases until they&rsquo;re ready. But it&rsquo;s also why sometimes we have to include things in releases in order to get feedback in order to, hear from people what needs to be improved and what we haven&rsquo;t thought of, because inherently you can&rsquo;t talk to 40% of the internet at once.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>You just can&rsquo;t. So part of that is that dance of, hey, this is coming up, hey, this is what&rsquo;s new. And seeing how 40% response. What did we miss and how can we do better next time? And the way I think of it as it&rsquo;s this nice chance with every single release of thanks for making me better. Thanks for making the web better.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And when the feedback comes in, that&rsquo;s what it is. Whereas I think page builders and site builders have a unique position where they might have a very large user base, but it&rsquo;s not going to be 40% of the internet. You know, there&rsquo;s just a huge difference there.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:10:42]</div> <div class=\"chat-text\"><p>So some of the constraints that you mentioned there were the audience size, 40% of the internet, you&rsquo;ve got to be mindful of the fact that they are going to expect things to break as little as possible.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"> <div class=\"chat-text\"><p>You&rsquo;ve got accessibility and so on. And there were probably two or three other things that you mentioned there as well. In real terms, how does this constrain the development? How do these factors slow you down? Do they have a material impact in the amount of time it takes you to do things because you have to ask for more consultation or you have to receive feedback from various people before you can get the green light to push that and move onto the next thing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:11:18]</div> <div class=\"chat-text\"><p>What you described is very, very accurate. I&rsquo;ll give a specific example. So the widgets editor, which is bringing blocks to the widgets editor. Originally, it was slated for 5.5. I&rsquo;m pretty sure. And it&rsquo;s gotten pulled from 5.5 from 5.6. Wasn&rsquo;t even considered for 5.7 and is now hopefully going to be slated for 5.8.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And a big part of this was originally, it was just going to be a separate editor, separate from the customizer and with feedback, it became very clear, customizer is a key interaction that we need to prioritize. How do we bring blocks to the customizer, which is a whole unique experience to think about.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And this is where the 40% of the internet comes into play, right? Because we understand that you&rsquo;re releasing new things, that&rsquo;ll cascade to new people. But what about the person who&rsquo;s had a site for five years? What benefits can we bring to them? Not just brand new users who are going to be using WordPress for the first time, because the majority of the users are people who have been using WordPress and who have trusted the community and the people building WordPress, with their site, with their, who knows what is their story, their business.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s a level of thought that has to go into play with that, and I think part of it is why Gutenberg, the plugin does bi-weekly releases. And I think there&rsquo;s about 300,000 active installs, which is a much smaller compared to the 40% of the internet. And it allows us to test things out, have experiments, go do outreach, like the outreach program I&rsquo;m running, get the feedback that we need, reach out to specific plugin authors. And in the case of the widgets editor, it became clear with each release, it just wasn&rsquo;t ready. It wasn&rsquo;t in the place that it needed to be. It wasn&rsquo;t as stable as it needed to be. It wasn&rsquo;t refined, it wasn&rsquo;t intuitive enough.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And in many ways, one of the things that slowed us down was wanting to have it in the customizer, which I think is a huge win. It&rsquo;s a main interaction that people are used to. It&rsquo;s something that people trust. So how can we go where people trust and extend that and provide an experience that they can also in the future trust and have actually unlock more things because when you&rsquo;re able to use blocks in the customizer, you&rsquo;re now able to add way more stuff than you would be able to and do way more things than you&rsquo;d be able to when it was just the customizer, which is pretty exciting. So it&rsquo;s both like trying to get user trust, but then also providing value at the same time and going to areas that people feel familiar with and slowly incrementally having stepping stones towards this eventual idea of full site editing, where everything is through a block paradigm, and you&rsquo;re able to extend your site, however you want.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:13:35]</div> <div class=\"chat-text\"><p>Do you ever get feedback from people who use these tools? That sort of question I&rsquo;m trying to frame is something along the lines of. How do you cope with people who wish that it were already something that their current tool can do? Take the example of a commercial page builder. There&rsquo;s several, you could pick the names of, and they&rsquo;ve got this tool and they&rsquo;re quite happy with it. And it does all of the things that they would wish to achieve. And then they come over and they look at the project that you&rsquo;re involved with, the full site editing, and they see a real difference. They see that this tool over here, which I&rsquo;m familiar with that works. I&rsquo;m very happy with it and it works and it does all these things that you are, you&rsquo;re still trying to put together. How do you bridge the gap between what their expectations are and what you&rsquo;re trying to build? Do you have conversations with people? In fact, you even download some of these commercial products and check them out and see what it is that people get excited about, about them.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:14:33]</div> <div class=\"chat-text\"><p>I definitely check them out. I actually love, love, love hearing about new plugins because I do, I actually test full siting every single day. I have been, it&rsquo;s been a challenge of mine like last couple of weeks, but I do also love when people flag things and say, hey, this new page builder or this new plugin provides a really interesting experience.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>One of the recent ones, I actually went back and checked out was the Iceberg plugin that simplifies the Gutenberg editor. And I recently checked that out again cause I was actually talking to someone in a completely different, it was a developer relations, a Slack community, and I have an alert word set up, anytime someone says, WordPress, I love doing that&rsquo;s my favorite little hack, life hack for everyone just joined a bunch of communities and then set up alert words. Yeah. He was just like, oh, man, this editor sucks. I don&rsquo;t know what to do with it. I immediately reached out to him and said, hey, no pressure. If you&rsquo;re game to talk about this, I&rsquo;d love to hear your concerns are what features are missing or what has you blocked? And I ended up sharing the Iceberg plugin with him and then went back through and tried it out again. And I bring this up because I think something to be said is that, the hope is that WordPress can provide common tools so that people, for example, aren&rsquo;t locked into one single page builder.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Like you can move around, and I get the rush to say man, I want to use the core system, but right now I&rsquo;m relying on this page builder, and we&rsquo;re frustrated with that too. There is a sense of urgency and Matias and Josepha touched on that in a WP Briefing podcast very recently that there&rsquo;s this urgency of getting features out to people now, because we know that it will benefit them.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I think that as a really exciting position to be in. I know where we&rsquo;re coming&hellip; It&rsquo;s going to come, I promise, hang in in there. Which I think is a neat space rather than this impatience or hesitancy, which I also think happens, but I do seek out feedback like that, and I do enjoy talking to people whenever they explicitly have a bad experience. And one of the best questions that I ask is, what features about this page builder do you really like, what would you want to see in the core experience. And then from there, I can be honest with them and say, oh yeah, we&rsquo;re working on that. That&rsquo;s going to be like, here are a couple of Github issues that you might be interested in that this is the design. This is whatever it is. But then on the flip side, There is also going to be a role that plugins have to play into the future. Same with the Gutenberg editor right now, and the core editor right now with Iceberg, for example, like where it simplifies the editor.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I imagine in the future with full site editing, there will be both plugins that really open up the options in the settings, and I also can imagine there&rsquo;ll be plugins that really simplify things and make it really easy for certain users to use it and people can pick and choose and customize as they&rsquo;d like, same to what we see with plugins now, anyway. And the biggest thing I often say to people whenever they talk about page builders, I&rsquo;m like, that&rsquo;s fine, if you&rsquo;re not ready to switch, that&rsquo;s totally fine. But at the end of the day, when you&rsquo;re starting with new client or you&rsquo;re starting a new site, or you&rsquo;re redoing your site at some point, you&rsquo;re going to have to learn something new, and it&rsquo;s better to learn the sure thing. Doesn&rsquo;t mean you only have to learn this your thing. I can imagine a world where people have these like hybrid experiences for some time, but the hope is that we can provide common tools so that people are not locked into one single page builder. Ideally the page builder is actually build alongside full site editing and the editor tools that we have. And then from there, people can customize to their liking either having more options show up or having less, and I do love hearing, what do you want? What&rsquo;s missing? Cause it helps sharpen our thinking, and oftentimes I hear about things that I would never think of. That&rsquo;s the beauty of having 40% of the internet is it&rsquo;s like, whoa, I never thought about that. You&rsquo;re right. That is a really interesting use case.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Like someone recently a good example with the custom 404 test, as part of the outreach program, we had people build fun, custom 404 pages and someone reached out and said, well right now, it&rsquo;d be really awesome to have different templates depending upon how the person landed on the 404, having some level of customization of what you present.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So maybe you have four different 404 templates and it cycles through them. They were like, is this possible? I would want to put a feature request in. And it was pretty easy for me to say, you know what? That probably will be done by a plugin. So, that&rsquo;s a great idea. That&rsquo;s a really interesting use case, and I do think that&rsquo;s something that&rsquo;s desired, but this is also where plugins will still play a role. And being able to tell people that, so that expectations are in line as much as possible, I think is really important. There are going to be aspects that will not be covered by the site editor and that&rsquo;s good.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:18:39]</div> <div class=\"chat-text\"><p>Commercial page builders if you like, the process which I often see is they&rsquo;ll release a statement out into their email list or what have you, and they&rsquo;ll describe the features that they have been working on that have now been released and so on. And so in many cases you don&rsquo;t really know what is happening unless you probably take great interest in their team and what have you. So I&rsquo;m curious to know what is the actual process that is going on in the background that iterates your project, the full site editing project. How did the little leaps forward get made? Who is involved? How can people get involved? How can they find out what it is that you&rsquo;re working on currently? And ways in which they can help you. And there&rsquo;s a lot in that question, so probably the first thing I&rsquo;ll just rewind a little bit and say, could we just concentrate on how the full site editing, the team that&rsquo;s behind that, how does it actually work? What is it that you do? How do you communicate with each other? How do you ensure that things are being built that people want to have in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:19:38]</div> <div class=\"chat-text\"><p>Yeah, that&rsquo;s a great question. To start, I would say Matias is kind of, I think Josepha described him as the spark behind Gutenberg, and I really love that title, so I&rsquo;m going to use it, reuse it. He is the project architect. So imagining multiple steps ahead, thinking about where we need to go, thinking about truly the infrastructure of what&rsquo;s being built, APIs, is design tools, all that sort of stuff. And really thinking about based on many, many, many years of experience in the WordPress community, what do we know for sure that people need? And then from there, a lot of it is just this back and forth with the community, releasing stuff, doing calls for testing. The outreach program is a big part of that. So getting feedback from the outreach program, but one of the things that I recently came up that I am working on doing a better job of communicating is the outreach program is bringing in feedback, but that feedback and the high level, top feedback items are likely going to be different than what are the top issues to solve for full site editing if that makes sense. So there&rsquo;s the feedback there&rsquo;s actually using the tool, and then there are, these are the things that have to be solved and sometimes there&rsquo;s overlap where sometimes some of the feedback becomes a top issue. But not all the time. And that&rsquo;s partly because the MVPs is a work in progress.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And as those things get clear, for example, I think after April is gonna be a jam packed month, but once there&rsquo;s that decision point that go no go date, there will be a time where the full site editing outreach program can start switching into a more narrowed experience of testing. And I&rsquo;m really excited for that, where it&rsquo;s okay, here&rsquo;s the MVP. Here&rsquo;s what we&rsquo;re thinking for 5.8 which are two separate goals, by the way, there&rsquo;s like building MVP, and then there&rsquo;s, what&rsquo;s going to go in 5.8 and I think that&rsquo;s important to keep in mind as well. And yeah, one of the biggest ways that we get feedback and figure out what needs to be done next, especially now that we&rsquo;re in a more refinement period is through the outreach program is through people filing feature requests and just doing as much testing as possible. Ideally this is also where a theme authors start exploring what it&rsquo;s like to build block-based themes and give feedback on that experience. So, yeah, there&rsquo;s a lot of ways that the feature development goes on. I will say a lot of the work happens in Github and then every, probably I think, a two month cadence, there&rsquo;s some high-level posts about full site editing, whether it&rsquo;s about a specific release or just like a check-in post, or if it&rsquo;s about FSE and themes. There have been various posts over the last six months and I expect to see a lot more in the coming months leading up to 5.8 so that people are aware and they don&rsquo;t have to pay attention to the day to day with Github. Another really good post to keep an eye out on is the what&rsquo;s next post. And that&rsquo;s posted each month and kind of defines, this is what the team is working on next.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And a lot of that does come down to, what issues of have come up in testing, what issues does Matias think are high priority to solve? What else is remaining in the MVP that&rsquo;s been discovered previously? And one thing that I think is really easy to miss with full site editing, and it almost feels weird to just say. This monolithic full site editing when actually it&rsquo;s this really diverse set of projects, and each is further along than others.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So there&rsquo;s this very interesting battle that goes on in my mind, whenever I talk about full site editing, cause what I really want to do is talk about a specific piece of full site editing, but that also can get too granular in a way that can be really confusing. But it&rsquo;s something I like to mention where if you try out the experience and one part seems really good and one part you&rsquo;re like what&rsquo;s happening here, that&rsquo;s on purpose. Because at the end of the day, I don&rsquo;t expect the entire experience to go into 5.8. I expect certain things to fit in and for there to be a drip campaign, probably through even the 6.0 release, who knows, but definitely through the 5.9.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:23:02]</div> <div class=\"chat-text\"><p>Let&rsquo;s say somebody is listening to this and they&rsquo;ve got no experience contributing to any software project, and they&rsquo;re interested, they like the idea of full site editing and they&rsquo;ve got a few things they&rsquo;d like to get off their chest and they want to be of some help. What are the most effective things that can help to push the project forward right now? That could be an answer as to which website to go to, and get involved in, or it could be, well, actually, no, we need help about this specific thing right now over the next month or two, you can take that in any way you like.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:23:35]</div> <div class=\"chat-text\"><p>I mean the simplest answer that I would love to see is people joining the Core Editor meeting. If you can. If you can&rsquo;t reading the notes and starting there, which you can see them posted on make.wordpress.org backslash core, there&rsquo;s actually a tag for the Core Editor meeting. But I would start there, and I say that partially because we&rsquo;re in a pandemic. Most places in the world, you can&rsquo;t meet up in person. So getting connected with the people behind this work before you step into Github, before you step into anything else, I think is really important. There are humans doing this work. There are humans who are listening, who are caring, who are staying up late, thinking about problems. So join the meetings if you can, if you can&rsquo;t asynchronous contributions are very welcome. So if you can comment on the post with a question and have it answered, but I want to start there with the human element, especially right now. So my answer, you&rsquo;re listening to this many years in the future, hopefully we&rsquo;re beyond this, but for now I really want to connect people with other people. And then from there, start as simple as just testing, get a test site up, try things out. There&rsquo;s another make site, which is where we communicate in the project, make.wordpress.org backslash test. That&rsquo;s where I post a lot of the stuff around this outreach program. So if you just want dip your toes in, that&rsquo;s a great place to start. It walks you through, there&rsquo;s instructions on how to set up everything, what to use what to pay attention to, how to actually go through the call for testing. It&rsquo;s very purposely constrained right now, so that it makes it easy for people to jump in. But if you&rsquo;re more advanced, I would just say, start scrolling th through Github. Look at different labels. There&rsquo;s a really good label that I check regularly, the overview label. So if you want to get a sense of the top issues, or I guess the summarized issues, the overview label is my jam. I love going through that and seeing what&rsquo;s new and also just seeing the status of things. It&rsquo;s a really great way to dig into the project, but not too deeply. And if you&rsquo;re someone who&rsquo;s been around WordPress for awhile I would say starting to, try to create a block plugin or build a block based theme.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>We&rsquo;re going to need to see the community in the future, really adopt these things and starting early while things are almost refined, I think is super helpful because it helps us define them in a place that there&rsquo;s early enough for things to shift. Getting that feedback is pretty key so that we are creating tools that you can actually use, because the whole point is this is all being built, so other people can use it. Other people can&rsquo;t use it, and we don&rsquo;t know that. That&rsquo;s a problem and it&rsquo;s hugely helpful and valuable to do that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:25:48]</div> <div class=\"chat-text\"><p>You highlight the fact that you obviously need help with the things that you just described. All those technical areas. If I was to be listening to this and I am a more casual user of WordPress, I use it to create blog posts and I&rsquo;m good at writing, but I&rsquo;m not really into the code, and that side of things is of no interest to me, are there avenues that would still be open to me to assist with this?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:26:09]</div> <div class=\"chat-text\"><p>Yeah, I would actually say the testing should be pretty basic enough that you can dig into it. I&rsquo;m saying this as the person who writes the test, I purposely try to make them very contained, so anyone can jump in and if they want to spend five minutes, ten minutes, that&rsquo;s great. You don&rsquo;t need to spend hours on this. Some people do, some people really like to go deep with it, but the whole point is that it&rsquo;s something that anyone can jump into.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And even if a call for testing is passed, it&rsquo;s still great to go back through previous calls for testing and I actually have videos as part of the calls for testing so that you can see me walk through it. So if you get stuck, if you&rsquo;re reading my instructions and you&rsquo;re like, what is this person saying?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>You can watch the video and watch me go through it. And even just watching that and giving feedback and saying, hey, this is really weird, or, I really like when my page builder does this , do you all have plans for that? And another thing that&rsquo;s actually coming up that I plan to do that anyone can participate in is another big call for questions. So there was a lull in testing. I was waiting for a new Gutenberg release and a couple of months ago, I did just, anyone could ask anything about full siding and I would find the answer for it. And we ended up getting, I think it was 46, 47 questions, which was fantastic. And I grouped them into different chunks, answered them, all, publish them, pass them on to the documentation team, the marketing team, but that allowed people where if they don&rsquo;t have time to test, but they&rsquo;re nervous about it, or they&rsquo;re curious about it or they&rsquo;re excited for it, or they&rsquo;re impatient, whatever their emotional state is. Ask any question and I&rsquo;ll answer it. And I plan to do those, another round of that definitely in the future. Probably at the end of April, and if that&rsquo;s of interest paying attention to the, make.wordpress.org backslash test as the best place to pay attention or in Slack there&rsquo;s in wordpress.org Slack, there&rsquo;s a FSE hyphen outreach hyphen experiment that you can join, and you can just sit back and listen to me update you as I go, but that&rsquo;s also a great way is asking questions, sharing concerns. That is actually hugely helpful. It sets the foundation for documentation. It helps the people building it know what the points of confusion are likely to be. So yeah, if you just want to ask a question by all means that&rsquo;s a very easy pathway to jump into.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:28:10]</div> <div class=\"chat-text\"><p>Thank you. I&rsquo;ll be sure to take those links off you before we finally hang up the call today and we&rsquo;ll make sure they make it into the show notes. Do you feel that you have. Enough people giving you feedback to justify the decisions that you made. I mean obviously in any software development, the answer I guess, is going to be, well, it would be great to have more. Do you feel that there is enough people assisting you at the moment so that you can be confident in the direction that you&rsquo;re going? We&rsquo;re doing this, we&rsquo;ve got some feedback, but curious whether or not, if we have more feedback, we&rsquo;d go in a different direction or not.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:28:44]</div> <div class=\"chat-text\"><p>That&rsquo;s a great question. I am always someone who wants more people involved. I don&rsquo;t think I&rsquo;ll ever be happy with the numbers. Right now we have between 10 to 15 people with each test. And one of the things I actually recently consulted some of our design team with an Automattic, and I asked, I said, with usability testing what kind of numbers do you look for when you all did this with 5.0 what did you look for how many people? And a lot of times I got feedback saying, Oh my gosh. Anne, five to 10 people, it was great. You can calm down. It&rsquo;s fine. I&rsquo;m like, no, no, no. I need like 50, you know, it is this weird sense of no, no, I want more and more and more. And I can tell you, I don&rsquo;t think we can ever get too much feedback, especially if it&rsquo;s relevant and its&hellip; I mean, obviously there&rsquo;s like irrelevant feedback where it&rsquo;s make WordPress like Facebook. I mean, whatever, it could be something outrageous. That&rsquo;s not terribly helpful, you know? But imagine if we just got completely inundated with feedback in the outreach program, that would be amazing. My goal, my personal goal that I&rsquo;ve been trying to say outwardly in hopes it encourages people is I would love to have 20 to 25, really dedicated, diverse testers, each release and not each release each call for testing. That&rsquo;s my ideal. And the reason I mentioned engaged testers is because I want people who are along for the journey a little bit,ideally. Obviously I think it&rsquo;s great if people jump in and out, I think there&rsquo;s something to be said for really new perspectives and I love when people comment saying, hey, this is my first time using full site editing and here are my thoughts. That&rsquo;s excellent. But the idea of quality over quantity, I think is really key, for this phase of testing. I think when things actually get merged into core and certain aspects get merged into core, that&rsquo;s when things can open up and be a bit more, having 2000 people give feedback, but yeah, I don&rsquo;t think there&rsquo;s ever enough testing and honestly, I do worry about that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And it&rsquo;s something, one of the things I&rsquo;ve been very intentional about is reaching out to the accessibility team to try and get people to help give feedback so that we&rsquo;re thinking about accessibility needs and reaching out to folks in the polyglot space so that we have translations of these posts so that people can participate. I only speak English and I had been in countries where all of a sudden, you see something in English and it&rsquo;s like this it&rsquo;s like such a relief to have a menu in English. Like, Oh yes, this is so nice. And I want that outreach to happen because I think sometimes the software development I&rsquo;ve seen this like arrogance of, oh well, we&rsquo;ll just be doing the work and if they&rsquo;re curious, they can come to us. And I actually think this is one of those situations where we need to go to them. And that&rsquo;s what the outreach program is all about is meeting people where they are doing the outreach. Bringing people along with us and learning from them as we go. Part education, part feedback loop, and part, hey, here&rsquo;s a really easy way to get involved and walk you through what&rsquo;s coming.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I would love to see more engagement from folks who are non-English speaking. We&rsquo;ve had Italian, Spanish and Japanese translations very consistently. I&rsquo;m so grateful for the people who&rsquo;ve done that. I think it&rsquo;s just, oh, I&rsquo;m so bad at languages that it just amazes me. I also think everything looks better in a different language. So it&rsquo;s neat to see my own words translated, which is a kind of a wild experience that I never thought would happen, but I&rsquo;d love to see more engagement. In those polyglot and local spaces, because the last thing you want is for all of a sudden it to land and only a specific audience benefits or sees this or understands it or knows what&rsquo;s coming, right. There&rsquo;s a big responsibility for 40% of the internet. And I&rsquo;ll never forget the day that Matt at a State of the Word said that non-English downloads passed English downloads. And so when you think about that 40% I think a lot of us English speaking, Western world think of a certain type of person, but really it&rsquo;s much more expansive than that.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So I&rsquo;ve been really hammering the polyglot space as much as I can, as much as volunteer time people can give to translate those posts and to try and get feedback. But it&rsquo;s something that I&rsquo;d love to see more of.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:32:22]</div> <div class=\"chat-text\"><p>I&rsquo;m curious actually, if you&rsquo;ve got a really nice concrete example of an instance where somebody&rsquo;s feedback turned into something actual. It was realized off the back of a piece of feedback, which you passed on to the team, and somebody reached out said, I would like this. And you were able to provide this, Hearing those stories. Ah, it is possible.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:32:44]</div> <div class=\"chat-text\"><p>Yeah, I can think of a really specific example that I was actually thinking about this morning when I was making coffee. A blind developer, I got connected with her through actually posting in a different Slack community. So, you would not believe how many Slack communities I&rsquo;m a part of and how much I try to drop links and engage people in different spaces. And I got connected because someone said, hey, I have a friend she&rsquo;s blind, she&rsquo;s a WordPress developer, and she cannot use full site editing. And I was like, whoa, tell me everything.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>How can I get in touch, and got in touch, her name&rsquo;s Taylor. And she very kindly jumped on for about 30 minutes. We recorded the session so that I could pass along the feedback. She just walked me through the experience of both using of using two different screenreader tools. And. It was fascinating. It was awesome.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>We found so many bugs. It was one of those things where I think the biggest, the most jarring one that I keep thinking about that I actually want to see if we can get some development in on ASAP, is that the save button, and the saving process for full site editing right now is pretty non-intuitive, it&rsquo;s a little bit clunky and it&rsquo;s something that&rsquo;s come up with sighted folks as well. What is the saving process, how does it work? But for people who rely on screen readers, it&rsquo;s really impossible to save. Like you basically have to search for the phrase save in order to find the save button because there isn&rsquo;t an aria label. And so that&rsquo;s a big one that came up and on top of that in just the session, I worked with her another piece of feedback that came up with the columns block.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So if you have columns and you&rsquo;re imagining, let&rsquo;s say two columns and you are using a screen reader, it doesn&rsquo;t tell you which column is which. So all of you here just announces column, column it doesn&rsquo;t say like column one or column two or right column or left column. There&rsquo;s no identifier for how to navigate.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And so that&rsquo;s actually, there&rsquo;s a PR right now that&rsquo;s underway. I actually just filed it for the accessibility team last week to see if someone could review and someone already stepped in to offer some thoughts to fix that, to actually announce, I think they&rsquo;re going with like column one and column two and column three rather than right and left due to internationalization. And that&rsquo;s going to be a huge improvement because right now Taylor was just like, columns block is so confusing. This is almost useless. Another one is the spacer block. I&rsquo;d love to hear. If you use a screen reader, I&rsquo;d love to hear your experiences with the spacer block, because that&rsquo;s a really confusing block for people I&rsquo;m relying on screen readers.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I opened up an issue for that, and we&rsquo;ve had some discussion back and forth about improvements that need to be made there as well. So those are some of the, and I can tell you, there&rsquo;s probably about. I think six issues I opened just from that 30 minute conversation. Some are like a work in progress, but this was very recent and something I keep thinking about, especially as we start to refine things and decision points come up because we don&rsquo;t want to release something that has such blatant problems with it.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:35:24]</div> <div class=\"chat-text\"><p>It marks a very big change for WordPress this last couple of years have been really extraordinarily different, the experience that we&rsquo;re all going through, but in particular, around full site editing How do you calm people&rsquo;s fears that things in the future are going to be going in the direction that they wish it to go in. So, as an example, let&rsquo;s imagine that we&rsquo;re a theme developer. We may be getting concerned that themes are going to become a thing of the past that the livelihood that we&rsquo;ve created for ourselves is going to disappear before our eyes. People concerned that the way that they&rsquo;re working with at the moment, the way that they&rsquo;ve taught their clients to work, this is how WordPress works, and this is how you can manage your website for yourself, and so on. What do you say to people? What is the golden light on the hill? The thing that you draw attention to, to say, look, all of this will be worth it. How do you keep people focused on the positives and not worrying about all the different things that are going on left right and center?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:36:20]</div> <div class=\"chat-text\"><p>Yeah. The biggest thing I say is there&rsquo;s a reason that the last milestone is gradual adoption. And one of the things that I also love to talk about is the fact that full site editing is a bunch of sub projects actually gives us the flexibility to ship reliable items rather than shipping it all at once.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Yes, they&rsquo;re interdependent. Yes. And some cases they rely on each other and there needs to be probably a certain order or approach to releasing things. But by having so many different tools that provide value. It actually gives us the ability to step back and say, okay, what&rsquo;s ready. And that should be a big relief to people.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>It&rsquo;s not like there&rsquo;s going to be this on-off switch full savings here is taking over your site. Good luck. That&rsquo;s not going to happen. Gradual adoption is the game plan. It is the final step. And I imagine right now, a gradual adoption as a milestone is not fleshed out. But I imagine, especially you have to 5.8, that will become a much more fleshed out milestone in the same way you see other milestones, I think, Josepha has talked a lot about this, and I really love the way she basically says we want to fulfill the WordPress promise. We want to keep that trust and we want to release things in the best state possible while at the same time, recognizing that there&rsquo;s this urgency to offer tools that people are just lacking right now, at some point, we need to get those out in front of people and to provide value and making that determination is super tricky. But the good news is like I was saying earlier, we have that flexibility built into the fact that these are all sub projects and that many of them can be shipped independently.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And for theme authors, Themes are going to be so important in a full siding world. And one of the things I am so excited about is that there&rsquo;s going to be a ton of what they&rsquo;re calling. I .. the idea of these hybrid universal themes that can work with for example, template editing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So going and being able to edit like your single page template, your homepage template, or your 404 template. You could have a theme, that&rsquo;s a classic theme or traditional theme, whatever you want to call it. And you could use template editing. You could update your theme to hook into the tools have been made to allow for template editing.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Same thing goes for global styles. You could just use one part of the full site editing machine, so to speak and all the projects and slowly integrate, more and more, as you want to, like theme authors will have a lot of control of what they opt into and what they opt out of. And for us building it, it&rsquo;s on us to make it so desirable to opt in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>Right, and that&rsquo;s where the gradual adoption, so many pathways are going to be created. And I&rsquo;m actually really excited to see people move from this framework of anxiety to looking out across the space and going, hmm, what can I use? What is it that I hear from people all the time that I can integrate into this and moving into an exciting creative space rather than thinking, hh, I got to get caught up, I&rsquo;m behind. This is so bad. Like that kind of feeling, which I hear from a lot of people was like, I don&rsquo;t have time to get up to speed. And the ideal is that we&rsquo;re actually providing tools that save you time and add value. And that makes me really excited. I fully understand the fear. I fully understand the fear.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I don&rsquo;t say that lightly. As someone who is thinking about like how it&rsquo;s going to land in 40% of the internet and who every single day is talking to people who are giving feedback about, what&rsquo;s not quite there, I don&rsquo;t spend a lot of time talking to people who are just like, oh, I&rsquo;m so excited about this.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>People don&rsquo;t go out of their way to tell you that you often hear from the people who are upset or something&rsquo;s missing or promises broken or whatever it is. And it&rsquo;s something I think about a lot. And I understand why there is panic there, especially with livelihood in the situation that we&rsquo;re in.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And I have a lot of empathy for that. And I think in the future, and one of the things that I think you&rsquo;ll hear from leadership and you&rsquo;ve, everyone&rsquo;s priority heard this from leadership. It&rsquo;s just that we are purposely moving slowly and things get pooled for a reason. And it is to fulfill that promise and to think about backwards compatibility, but at the same time, balancing that with wanting to provide value for users and empowering users, especially in a day and age, when a lot of tech companies are actually taking away a lot of the power, whether it&rsquo;s in the form of privacy or what have you.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think open source and the way WordPress is working is actually trying to resist that and really focus on giving everything we can to the user, to build the site that they want and to have the experience that they want. And also to free them up, to focus on what the site actually gives them, whether it&rsquo;s a business or platform.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think that&rsquo;s the part that makes me&hellip; that hopefully makes other people excited. And that makes me really excited.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:40:26]</div> <div class=\"chat-text\"><p>Speaking to that. You&rsquo;ve done an incredible job answering all of my questions and you&rsquo;ve obviously got to wear the Automattic hat during a discussion like this. I&rsquo;m curious if we cast away the Automattic hat just for a moment and we ask you personally, what in the next six months to a year, what&rsquo;s the one single thing, the thing that you are most excited about, the thing that you most want to see happen, the thing that gets you personally switched on about the project.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:40:54]</div> <div class=\"chat-text\"><p>It&rsquo;s a great question. I would have to say block patterns, because we&rsquo;re talking about all these tools and features and things coming along, but ultimately as a user, it&rsquo;s like, what can I do, and what can I do quickly? And block patterns will really be the glue that ties together all these projects. You can insert a block pattern, manipulate it as you want to. And when you&rsquo;re manipulating it, you probably won&rsquo;t be thinking about the fact that you might be using global styles or that the block pattern is relying on block styles or whatever it is.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>But the power of that. And the promise of that, I think is just such a high impact, such a high impact feature that will really be like a cherry on top. And we&rsquo;ll bring together a lot of the things that we&rsquo;re talking about in a way that will be really tangible. And especially in this world of, you know, we&rsquo;re not able to gather in person we&rsquo;re not able to have those moments.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>I think having something that is easy to understand almost the point of being, so intuitive that it&rsquo;s like, why didn&rsquo;t we do this years ago? That&rsquo;s what I want the feeling to be. And that&rsquo;s when I had someone in design, tell me this one time. And it always stuck with me as like the best ideas are the ones where you&rsquo;re like, well, no, duh, like, yeah, of course.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>And that&rsquo;s what block patterns I think you&rsquo;re going to feel like, and I think it&rsquo;s really gonna fulfill a lot of these things and bring a lot of these things that we&rsquo;re talking about together in a way that will be really fun to play with. And also people will be able to submit to the block pattern directory, ideally in the future, similar to the block plugin directory.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"><p>So personally, I&rsquo;m most excited to see the marriage between block patterns and full site editing along with these hybrid themes.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:42:24]</div> <div class=\"chat-text\"><p>I know there will be no metric to judge this, but it would be fascinating in a couple of years time. Were we able to measure it, to see just how much of humanity&rsquo;s time has been saved by something like block patterns, the fact that you don&rsquo;t have to do things over and over again. Yeah. I completely understand why you&rsquo;ve selected that one. We have gone through so many questions. If somebody at the end of this, has been listening to this and thinks I would like to help, but I want to contact Anne directly before I go to these Slack channels and Github repos and so on. How might somebody get in touch with you should they wish to?</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:43:01]</div> <div class=\"chat-text\"><p>I would say go to my website. I am a weird millennial without social media. I jump on and off of Instagram. That&rsquo;s my one holdout. I love photography too much, but yeah, my website is nomad.blog and I have a contact page and I truly welcome to hear from anyone seriously. All I ask, and this is on my website as well. I like to do pen pal. Kind of writing back and forth. I think we don&rsquo;t rely, I think email, I&rsquo;ve read too many books about this, but I think email has ruined our ability to relax and unwind, and I refuse to opt into this always responding world. So as long as you&rsquo;re patient with me, and if I get a bunch of emails, as long as you&rsquo;re patient with me responding, I promise I will respond genuinely with a lot of thought. I do not like to do short, low quality responses. So if you&rsquo;re willing to engage there, that would be awesome to hear from you. I&rsquo;m also an annezazu in WordPress dot org Slack, if you end up joining there as well.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-1\"><div class=\"chat-author chat-author-nathanwrigley vcard\"><cite class=\"fn\">Nathan Wrigley</cite> [00:43:53]</div> <div class=\"chat-text\"><p>Well, thank you very much. I appreciate all of the hard work that you and everybody connected in the project is doing. It&rsquo;s making great inroads into our editing experience in WordPress. Greatly appreciated. Thanks for coming on the podcast.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"><div class=\"chat-author chat-author-annemccarthy vcard\"><cite class=\"fn\">Anne McCarthy</cite> [00:44:06]</div> <div class=\"chat-text\"><p>Of course. Thank you so much for having me.</p>\n</div></div><div class=\"chat-stanza chat-row chat-speaker-2\"> <div class=\"chat-text\"></div></div></div></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, 21 Apr 2021 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s: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:60:\"HeroPress: You Don’t Have To Want What Everyone Else Wants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=3539\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:166:\"https://heropress.com/essays/you-dont-have-to-want-what-everyone-else-wants/#utm_source=rss&utm_medium=rss&utm_campaign=you-dont-have-to-want-what-everyone-else-wants\";s: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:6215:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2021/04/042121-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: You don\'t have to want what everyone else wants.\" /><p>I launched a WordPress-based business sometime around 2013. Starting a business is a goal for a lot of people, but it was never something I intentionally set out to do. I was in university at the time and blogging about books &#8212; just doing something I loved. But then I had an idea for a WordPress plugin that would make book bloggers’ lives easier. Although I did decide to sell it instead of releasing it for free, making a lot of money was never my goal. I thought maybe I’d make $500 overall if I was lucky. But three months in I’d already made nearly $1500 and those numbers would only continue to climb.</p>\n<p>By the time I graduated university, this little business of mine was already fully paying my bills. I went straight from graduation to running a full time business. Over the next few years, I sold pre-made plugins, built custom plugins, launched custom websites for authors and bloggers, dipped into the managed WordPress hosting space, and created WordPress e-courses. Objectively, business was great.</p>\n<blockquote><p>But by 2016, I was waking up every morning and thinking, <i>“What the hell am I doing?”</i></p></blockquote>\n<p>The more my business grew, the more I was afraid it was about to crash and burn.</p>\n<p>The more I diversified, the less confident I felt about what I was doing.</p>\n<p>Above everything, I was <i>tired</i>.</p>\n<h2>Turns out, I’m not a businesswoman</h2>\n<p>I was tired of selling, of marketing, of advertising, of promoting. I was tired of asking myself <i>“will this sell?”</i> before I started a new project. I missed creating just for the sheer fun and joy of it, which was how my very first plugin even came to be. I just wanted to build cool things and quietly release them into the wild. I love to <i>create</i> but I don’t love to <i>sell</i>.</p>\n<p>Perhaps I could have hired people to help me with the aspects of my business I didn’t enjoy, but although business was going well for a one person show, I didn’t feel like it was going well enough to hire more people and confidently feel like I could pay their salary every month. And the thought of having that responsibility just brought me even more anxiety.</p>\n<blockquote><p>I felt stuck and, honestly, ashamed of how I felt about my business. Was I being ungrateful?</p></blockquote>\n<p>I had this incredible thing going for me &#8212; I was paying all my bills, working flexible hours (and from home!), and calling all the shots. This is what other people aspire to have, and I had it! I was embarrassed to admit that maybe I didn’t like it anymore. I didn’t want to be in charge. I didn’t want to have the entire success or failure of a business resting on my shoulders.</p>\n<p>I remember looking through job listings trying to imagine myself doing something else &#8212; anything else. But another problem I had was that running my own business straight out of school had spoiled me. I didn’t want to be in charge, but I also still wanted to work from home. I still wanted flexible hours. I didn’t want to sacrifice my 3pm gym session. I still wanted a certain degree of freedom in what I did each day. I wanted all the benefits of running my own business, without any of the downsides I had come to dread.</p>\n<h2>A well timed opportunity</h2>\n<p>In late 2016, sheer luck and good timing brought me to Sandhills Development. I was offered a job at a company that could amazingly check every box on my dream list. I could work from home, set my own hours, have a weird schedule, still make the gym at 3pm, and most importantly: my job would just be <i>one</i> thing. I could focus on building really cool stuff, and nothing else. I wouldn’t have to think about marketing or sales or profit.</p>\n<p>It’s been over four years since then and I’m now the lead developer for Easy Digital Downloads &#8212; the plugin I originally used to sell my first product. So I think things are going pretty well! My old business does still exist, but in a very low key way. I still work on and maintain the products out of love and passion for them, but with zero pressure to actually make sales or be successful.</p>\n<blockquote><p>The biggest difference is the boundaries I’ve been able to create in my life.</p></blockquote>\n<p>When running my own business, I didn’t work all day long, but I did tend to think about work all the time. Growth was always on my mind because making that happen was purely up to me. I was putting so much pressure on myself to do well, that I couldn’t stop thinking about it. But now, work goes away as soon as I decide I’m done for the day. I don’t think about it after hours. There’s comfort in the fact that although I care about the company, it’s not <i>my</i> company, and the success &#8212; or failure &#8212; of the company isn’t purely up to me; if something does go wrong when I’m gone, there’s someone else capable of handling it.</p>\n<h2>What works for someone else may not work for you</h2>\n<p>Some people would consider it a downgrade to go from business owner to employee, but it was absolutely the right move for me. Running your own business is often glamorized, but not everyone is cut out to wear all the hats that a one-person business requires, and not everyone has the drive to grow a business into something larger. And that’s okay. At the time, it was immensely hard for me to admit that out loud because I thought it would make me a failure.</p>\n<p>There is no “one size fits all” dream job and I learned that being the owner of a company is not mine. If what you’re doing now isn’t working then there’s absolutely no shame in bowing out, even if you’re currently living someone else’s dream.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/you-dont-have-to-want-what-everyone-else-wants/\">You Don&#8217;t Have To Want What Everyone Else Wants</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 21 Apr 2021 08:27:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Ashley Gibson\";s: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:62:\"WPTavern: WordPress Contributors Propose Blocking FLoC in Core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:169:\"https://wptavern.com/wordpress-contributors-propose-blocking-floc-in-core?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributors-propose-blocking-floc-in-core\";s: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:7493:\"<p>WordPress contributors are <a href=\"https://make.wordpress.org/core/2021/04/18/proposal-treat-floc-as-a-security-concern/\">proposing</a> the project take an active position on Google&rsquo;s Federated Learning of Cohorts (FLoC). This particular mechanism is Google&rsquo;s alternative to third-party cookies that doesn&rsquo;t require collecting users&rsquo; browsing history. The <a href=\"https://github.com/WICG/floc\">GitHub repository for FLoC</a> explains how Google will group people together and label them using machine learning:  </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We plan to explore ways in which a browser can group together people with similar browsing habits, so that ad tech companies can observe the habits of large groups instead of the activity of individuals. Ad targeting could then be partly based on what group the person falls into.</p><p>Browsers would need a way to form clusters that are both useful and private: Useful by collecting people with similar enough interests and producing labels suitable for machine learning, and private by forming large clusters that don&rsquo;t reveal information that&rsquo;s too personal, when the clusters are created, or when they are used.</p></blockquote>\n\n\n\n<p>WordPress contributors are proposing blocking FLoC in core, citing the Electronic Frontier Foundation&rsquo;s article titled &ldquo;<a href=\"https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea\">Google&rsquo;s FLoC Is a Terrible Idea</a>.&rdquo; </p>\n\n\n\n<p>&ldquo;WordPress powers approximately 41% of the web &ndash; and this community can help combat racism, sexism, anti-LGBTQ+ discrimination and discrimination against those with mental illness with a few lines of code,&rdquo; the proposal states.</p>\n\n\n\n<p>One of the more controversial aspects of the original proposal was that it was spectacularly miscategorized as a security concern, clouding the issue at hand. It identified FLoC as a security issue for the sake of getting it into core on a more aggressive timeline, which was outlined as follows:</p>\n\n\n\n<ol><li>Include the&nbsp;patch&nbsp;the next&nbsp;minor release, rather than waiting for the next&nbsp;major release;</li><li>Back-port the patch to previous versions of WordPress.</li></ol>\n\n\n\n<p>The proposal was later revised to clarify that treating FLoC like a security concern referenced only the timeline of accelerated development and back-porting.</p>\n\n\n\n<p>Although blocking FLoC seemed to have wide support in the comments on the post, the premature suggestion of treating it as a security concern weakened the proposal. </p>\n\n\n\n<p>WordPress core committer Ryan McCue said that while he is in agreement with the overall sentiment, rolling it out like a security updatet would abuse users&rsquo; trust in automatic updates:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The implicit contract with users for security autoupdates is that they are used in order to protect the user from their site (data or codebase) being compromised imminently. This isn&rsquo;t the case with FLoC, and may in some cases damage the site&rsquo;s behaviour.</p><p>More concretely: as someone who operates a hosting service where we keep users up-to-date with security patches, this changes our approach substantially. Right now, we can confidently roll out security updates trusting the update has minimal effect outside of purely security changes, but breaching that barrier means that now scrutiny needs to be applied to every security update in order to avoid rolling out potentially breaking changes to our clients.</p><p>That erosion of trust would ultimately hurt WP&rsquo;s users.</p></blockquote>\n\n\n\n<p>The proposal has started an active discussion with more than 100 commenters, including participation from the Chrome DevRel team who added more context on the current status of the experiment.</p>\n\n\n\n<p>&ldquo;It&rsquo;s also worth noting that because this is an origin trial it means that nothing is set in stone &mdash; this is an experiment to gather feedback,&rdquo; Chrome Developer lead Rowan Merewood said. &ldquo;The API may change, the opt-out mechanism may change, the eligibility criteria may change. Any code changes relating to an origin trial should also be treated as temporary and experimental.&rdquo;</p>\n\n\n\n<p>Those who were critical of the proposal consider FLoC a personal privacy issue that is not WordPress&rsquo; problem to solve. Others believe a proposal to block FLoC is reactionary at this point, since Google has not yet finalized its FLoC experiment. </p>\n\n\n\n<p>&ldquo;Thinking about users&hellip; i.e. the readers of a&nbsp;blog, they deserve choice,&rdquo; Andy Beard commented.</p>\n\n\n\n<p>&ldquo;They can choose which browser they use.<br />&ldquo;They can choose settings in the browser.<br />&ldquo;They can choose some overall options on a Google privacy site.<br />&ldquo;They can install a multitude of plugins.</p>\n\n\n\n<p>&ldquo;Alternatively, if WordPress blocks FLoC by default, that actually removes a choice &ndash; the choice of a user to see more relevant advertising.&rdquo;</p>\n\n\n\n<p>Several participants in the discussion were opposed to FLoC but also not supportive of a WordPress core effort to block it.</p>\n\n\n\n<p>&ldquo;While I&rsquo;m not pro-FLoC (and won&rsquo;t have my browsers using it) I certainly wouldn&rsquo;t expect a website to make the choice to opt-out for me, and I can&rsquo;t see why the majority of WordPress users and people visiting WordPress sites would expect that either,&rdquo; WordPress lead developer Dion Hulse commented.</p>\n\n\n\n<p>&ldquo;Perhaps more importantly, would WordPress also continue to opt out all future browser protocols too? Once you delve into blocking one, you&rsquo;ve either got to block them all, or you&rsquo;re playing favorites.&rdquo;</p>\n\n\n\n<p>Mika Epstein, who also expressed her opinion as anti-FLoC, said she is not in support of backporting a block due to the practicality of such an effort.</p>\n\n\n\n<p>&ldquo;If the decision is made to include this, I would support it as a&nbsp;<em>filterable privacy&nbsp;enhancement</em>&nbsp;only, not security,&rdquo; Epstein said.</p>\n\n\n\n<p>&ldquo;That said, I do&nbsp;<strong>not</strong>&nbsp;support backporting with the precedent that we did not&nbsp;backport&nbsp;the GDPR exporting stuff. Having it exist as a&nbsp;plugin&nbsp;(there are three already) is sufficient for those who are on older versions. The undue strain of increased backporting needs to be minimized, not maximized in my opinion.&rdquo;</p>\n\n\n\n<p>Others commented on the harm to independent publishers whose main source of revenue is often advertising.</p>\n\n\n\n<p>WordPress lead developer Helen Hou-Sandi requested the proposal be re-written to clarify the differences between disabling FLoC on a site level vs the browser level as a consumer. She also discouraged referring to the matter as a security issue and recommended the proposal&rsquo;s proponents justify the work required to backport the block. Hou-Sandi recommended opening a trac ticket as a more appropriate avenue of discussion regarding core implementation and inclusion, as contributors have not yet reached a consensus.</p>\n\n\n\n<p>The topic will be up for discussion at the next core developers&rsquo; chat on Wednesday, April 21, 2021. Representatives from the Chrome team <a href=\"https://make.wordpress.org/core/2021/04/20/dev-chat-agenda-for-april-21-2021/#comment-41165\">will also be attending</a> to answer any questions about FLoC.</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, 21 Apr 2021 05:17: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:\"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:114:\"WPTavern: Patchstack Whitepaper: 582 WordPress Security Issues Found in 2020, Over 96% From Third-Party Extensions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:267:\"https://wptavern.com/patchstack-whitepaper-582-wordpress-security-issues-found-in-2020-over-96-from-third-party-extensions?utm_source=rss&utm_medium=rss&utm_campaign=patchstack-whitepaper-582-wordpress-security-issues-found-in-2020-over-96-from-third-party-extensions\";s: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:4647:\"<p class=\"has-drop-cap\">Patchstack, which recently <a href=\"https://wptavern.com/webarx-rebrands-to-patchstack-combines-services-to-focus-on-wordpress-plugin-and-theme-security\">rebranded from WebARX</a>, released its <a href=\"https://patchstack.com/wordpress-security-2020/\">2020 security whitepaper</a>. The report identified a total of 582 security vulnerabilities. However, only 22 of the issues came from WordPress itself. Third-party plugins and themes accounted for the remaining 96.22%.</p>\n\n\n\n<p>&ldquo;These are all security issues disclosed by the Patchstack internal research team, Patchstack Red Team community, by third-party security vendors, and by other independent security researchers,&rdquo; said Oliver Sild, Patchstack founder and CEO. &ldquo;So it includes all public information about vulnerabilities.&rdquo;</p>\n\n\n\n<p>Patchstack is a security company that focuses on third-party extensions to WordPress. Its <a href=\"https://patchstack.com/database/\">vulnerability database</a> is public and available for anyone to view.</p>\n\n\n\n<p>In the second quarter of 2020, Patchstack surveyed nearly 400 web developers, freelancers, and agencies about web security. &ldquo;Over 70% responded that they were increasingly worried about the security of their website, and the top reason was &lsquo;vulnerabilities in third-party plugins,\'&rdquo; according to the whitepaper. &ldquo;About 45% of respondents saw an increase in attacks on websites they were managing, and 25% had to deal with a hacked website in the month prior to participating in the survey.&rdquo;</p>\n\n\n\n<p>Ranking at the top, 211 of the vulnerabilities found were Cross-Site Scripting (XSS) issues, 36.2% of the total.</p>\n\n\n\n<p>&ldquo;XSS in WordPress plugins almost always happens because user input data is directly printed onto the screen without any sanitization,&rdquo; said Sild. &ldquo;<code>esc_html</code> would be used to convert certain characters to their HTML entities, so it will be literally printed onto the screen. Then you also have <code>esc_attr</code> for user input variables, which need to be used in HTML attributes. There are many good resources published by <a href=\"https://owasp.org/\">OWASP</a> (The Open Web Application Security Project), such as the &lsquo;Secure Coding Practices.\'&rdquo;</p>\n\n\n\n<p>Injection vulnerabilities ranked second with 70 unique cases. It was followed by 38 Cross-Site Request Forgery (CSRF) issues and 29 instances of sensitive data exposure.</p>\n\n\n\n<p>&ldquo;The vulnerabilities found in plugins and themes tend to be more severe than those found in WordPress core,&rdquo; wrote Sild in the whitepaper. &ldquo;What makes matters worse is that many popular plugins have millions of active installations, and the numbers aren&rsquo;t pretty when we look at how many websites are affected by the vulnerable plugins.&rdquo;</p>\n\n\n\n<p>The total number of active and vulnerable theme and plugin installations throughout the year was 70 million. <a href=\"https://central.wordcamp.org/about/\">According to WordCamp Central</a>, WordPress is installed on 75 million websites. Many sites likely had more than one vulnerable plugin during 2020 rather than 70 million individual sites being at risk.</p>\n\n\n\n<p>Patchstack surveyed 50,000 websites and found that they averaged 23 active plugins at a time. About four on each site were outdated with an upgrade available, which often increases the risk of a security issue.</p>\n\n\n\n<p>WordPress plugins accounted for 478 vulnerabilities in the report. However, there were only 82 unique theme issues. While themes are typically far more limited in scope, they can do anything a plugin can do with a few exceptions.</p>\n\n\n\n<p>It is not surprising to see that number lower for themes. However, one has to wonder if the <a href=\"https://wptavern.com/upcoming-changes-and-steps-for-an-overhauled-wordpress-theme-review-system\">ongoing plan</a> to loosen the WordPress.org theme directory review guidelines will factor into that in the coming year or two. Currently, reviewers for the official directory perform extensive code checks that may be more likely to catch issues before themes arrive in users&rsquo; hands. If the trade-off is better automation, it could also mean stricter coding standards and fewer security issues that human reviewers might miss.</p>\n\n\n\n<p>&ldquo;Vulnerabilities from third-party code remain as one of the biggest threats to websites build on WordPress,&rdquo; concluded Sild in the report. &ldquo;We already see a growth in unique vulnerabilities reported in the WordPress plugins and themes comparing 2020 with the beginning of 2021.&rdquo;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 20 Apr 2021 20:47: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:87:\"WPTavern: Recreating the Classic Wedding WordPress Theme Homepage With the Block 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:219:\"https://wptavern.com/recreating-the-classic-wedding-wordpress-theme-homepage-with-the-block-editor?utm_source=rss&utm_medium=rss&utm_campaign=recreating-the-classic-wedding-wordpress-theme-homepage-with-the-block-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6345:\"<p class=\"has-drop-cap\">I simply do not understand it. For at least the better part of a decade, theme authors have asked for the tools to create more complex layouts with WordPress. They have asked for the ability to allow end-users to more easily recreate their demos. They have wanted methods to bypass the &ldquo;restrictive&rdquo; theme review guidelines.</p>\n\n\n\n<p>Over the past couple of years, WordPress has consistently delivered features that theme authors have asked for. Yet, themes that use them are few and far between.</p>\n\n\n\n<p>During my weekly perusal of the latest themes to land in the directory, a new <a href=\"https://wordpress.org/themes/classic-wedding/\">wedding theme</a> caught my attention last week. Of course, I downloaded, installed, and activated it only to find that I had no idea how to recreate the homepage design. There were no instructions. The theme options in the customizer seemed to make little sense. Nearly all of the decorative images were non-existent in the theme folder.</p>\n\n\n\n<p><em>Did I need to upgrade to the pro version to get what was in the screenshot?</em> There seems to be a plan for such a version, but it is not available yet.</p>\n\n\n\n<img />Classic Wedding theme screenshot.\n\n\n\n<p>I am no rookie, but I was stuck. I liked the simplicity of the design. However, I could not imagine setting up a wedding site with this theme. From a user&rsquo;s standpoint, it should not take more than a few mouse clicks. After that point, it should only be a matter of customizing the content.</p>\n\n\n\n<p>I recognize that there is still a sort of love/hate divide for the block editor in the <em>inner</em> WordPress community. However, theme authors are not doing any favors for the overall WordPress user base by not taking advantage of the tools available.</p>\n\n\n\n<p>So, I recreated the Classic Wedding theme homepage from scratch. Using the block editor. With a theme that supports it.</p>\n\n\n\n<h2>Creating a Wedding Homepage</h2>\n\n\n\n<p class=\"has-drop-cap\">My goal was simple. There was no demo to work from, and all I had to go on was an 800-pixel wide screenshot from the <a href=\"https://www.theclassictemplates.com/themes/free-wedding-wordpress-theme/\">theme page</a> on the author&rsquo;s site. Like I <a href=\"https://wptavern.com/recreating-the-music-artist-wordpress-theme-homepage-with-the-block-editor\">recreated the Music Artist homepage</a> several weeks ago, I wanted to do the same for Classic Wedding. With a couple of exceptions, which could have been handled by the theme, I was successful.</p>\n\n\n\n<p>Because Classic Wedding does not support the block editor itself, I could not recreate its homepage via the block editor while using the theme. It was not happening &mdash; I tried. I knew that the <a href=\"https://wptavern.com/eksell-portfolio-theme-now-available-in-wordpress-themes-directory\">Eksell WordPress theme</a> had a &ldquo;canvas&rdquo; template that allowed users to edit the entire page, so it was an easy choice.</p>\n\n\n\n<p>I also loaded the Kaushan Script and Lora fonts to more closely match the original theme. This was unnecessary for the experiment, but I wanted my recreation to at least look somewhat similar.</p>\n\n\n\n<p>I immediately knew that I would have one hurdle to overcome. The theme used an image that overlapped both the section above and below it. This requires margin controls, particularly the ability to add negative margins. Unfortunately, this is a missing component of the block editor today. It does not mean that theme authors cannot do it with custom block styles or patterns. It simply means that end-users are unable to control it from the interface.</p>\n\n\n\n<p>Because I did not want to spend my time writing the code for this, I leaned on my usual safety net, the <a href=\"https://wordpress.org/plugins/editorplus/\">Editor Plus</a> plugin. While it can be a little clunky sometimes and feel like overkill, it does include those missing features like margin options.</p>\n\n\n\n<img />Adding negative margin to an image.\n\n\n\n<p>I used <code>px</code> units there because it was easy. In a real-world project, <code>%</code> or <code>rem</code> would have been better. But I was just doing a quick proof-of-concept.</p>\n\n\n\n<p>Everything else in the content area was straightforward. I needed a Cover block with an Image, Heading, Paragraph, and Button tucked inside. I needed a Group block as a container for Image, Heading, and Paragraphs in the bottom section.</p>\n\n\n\n<p>Because the theme did not package its decorative images &mdash; <em>again, how would users recreate the homepage without them?</em> &mdash; I opted for a simple striped SVG background instead of the flowers in the original. Since I already had Editor Plus installed, I added an SVG from <a href=\"https://heroicons.com/\">Hero Icons</a> as the main background.</p>\n\n\n\n<img />Wedding page content recreation.\n\n\n\n<p>My original idea was to recreate the &ldquo;content&rdquo; part of the homepage only. However, it was a bit boring on its own. Therefore, I transformed everything into a Columns block and added the sidebar. I recreated the primary elements using the Image, Heading, Paragraph, and Navigation blocks. Then, I added a Social Icons block for fun.</p>\n\n\n\n<img />Full wedding homepage design.\n\n\n\n<p>I did hit one snag with the Navigation block. WordPress does not currently offer a method of centering each link in the list when using the vertical block variation. I had to write a couple of lines of CSS to make this happen. This seems like an oversight and one area where the block editor failed to meet my expectations. Of course, this could be handled on the theme side of things.</p>\n\n\n\n<p>Overall, this was a relatively simple project. However, this experiment added some complexities that were not present when I recreated the Music Artist homepage. Margin controls and vertical Navigation block alignments are must-haves. Using a third-party plugin and writing custom CSS is not ideal, and these were requirements to make this happen straight from the editor.</p>\n\n\n\n<p>All of this is possible from the theme end. Each piece of this design could have been packaged as a block pattern. The overlapping image effect would have made for a neat block style. I just wish that theme authors would start utilizing the features that are being hand-fed to them.</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, 19 Apr 2021 21:42: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:14:\"Justin Tadlock\";s: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:69:\"WPTavern: Automattic Launches Jetpack Boost: A New Performance Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=114913\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:181:\"https://wptavern.com/automattic-launches-jetpack-boost-a-new-performance-plugin?utm_source=rss&utm_medium=rss&utm_campaign=automattic-launches-jetpack-boost-a-new-performance-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4877:\"<p>The Jetpack team has been quietly testing a new plugin called <a href=\"https://wordpress.org/plugins/jetpack-boost/\">Jetpack Boost</a>, which addresses website owners&rsquo; performance and SEO concerns. Version 1.0 was released today, one month after the final pre-release came out in March.</p>\n\n\n\n<p>Boost is a separate plugin under the Jetpack brand and it does not require Jetpack core to work. The first iteration bundles three performance modules:</p>\n\n\n\n<ol><li><em><strong>Local Critical CSS</strong></em>&nbsp;generates optimized styles for the homepage, posts, and pages to display content faster, especially for visitors on mobile devices.</li><li><em><strong>Defer Non-Essential Javascript</strong></em>&nbsp;moves some tasks to after the page loads, so visible items load faster.</li><li><em><strong>Lazy Image Loading</strong></em>&nbsp;loads images as the visitor scrolls them into view. </li></ol>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Once the plugin is installed, users can toggle the modules on or off. Optimizing the site&rsquo;s CSS can be a lengthy process but it shows a progress bar and alerts you if are trying to navigate away from the page before it&rsquo;s finished. Jetpack Boost displays an initial score when it&rsquo;s first installed and will update after optimizations are put in place. </p>\n\n\n\n<p>Here&rsquo;s an example score from a relatively unoptimized simple blog with 20 active plugins:</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>After installing Jetpack Boost, there was a significant improvement on scores in the dashboard. It&rsquo;s not a magic wand but it&rsquo;s a fairly user-friendly way to tackle some basic performance issues that may translate into a better visitor experience. </p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Checking the before and after scores on <a href=\"https://web.dev/measure/\">web.dev</a> demonstrates a noticeable improvement on the Core Web Vitals assessment. For some websites this could mean the difference between passing or not (meaning 75% of pages on the domain pass).</p>\n\n\n\n<div class=\"wp-block-image\"><img />Before installing Jetpack Boost</div>\n\n\n\n<img />After installing Jetpack Boost\n\n\n\n<p>Automattic engineer Nauris P&#363;&#311;is, who worked on the project, said one reason the plugin was created was to help users &ldquo;get their Web Vitals up and make the web a better place.&rdquo;</p>\n\n\n\n<p>Google Search will be <a href=\"https://wptavern.com/google-search-to-add-page-experience-to-ranking-signals-in-may-2021\">adding Page Experience to ranking signals</a> in May 2021, and WordPress sites need all the help they can get. Page Experience is measured by a website&rsquo;s <a href=\"https://web.dev/vitals/#core-web-vitals\">Core Web Vitals</a>&nbsp;metrics, but these scores are not easy to improve without some technical knowledge and troubleshooting.</p>\n\n\n\n<p>Despite Jetpack already including so many different, varied features, Automattic opted to put the Boost modules in a separate plugin. </p>\n\n\n\n<p>&ldquo;We want Jetpack Boost to have a life of its own &ndash; focused on performance and make it available to everyone, including people who don&rsquo;t want to use the main Jetpack plugin,&rdquo; P&#363;&#311;is said.</p>\n\n\n\n<p>The plugin was built with the same modular structure as Jetpack core, so users can easily deactivate modules they don&rsquo;t want to use. This is helpful for ensuring compatibility with other performance or caching plugins that website owners may already be using.<br /><br />&ldquo;You&rsquo;ve probably noticed that both Jetpack and Boost have lazy loading images &ndash; it&rsquo;s the exact same module,&rdquo; P&#363;&#311;is said. &ldquo;If the user happens to have both Jetpack and Jetpack Boost active &ndash; it&rsquo;ll just use the most recent version of Lazy Loading Images.&rdquo;</p>\n\n\n\n<p>The features in version 1.0 are just the beginning of Automattic&rsquo;s plans for Jetpack Boost. The project appears to be on track to become a full-blown performance plugin that may even migrate some of Jetpack core&rsquo;s performance-related functionality.</p>\n\n\n\n<p>&ldquo;Version 1.0.0 is being released the &ldquo;<a href=\"https://ma.tt/2010/11/one-point-oh/\">one-point-oh</a>&rdquo; way,&rdquo; P&#363;&#311;is said. &ldquo;We&rsquo;re releasing as early as we can call it stable &ndash; but there&rsquo;s so much that we want to do. Starting with simple modules that package up other typical optimization techniques (like concatenation, minification, maybe even photon?) &ndash; all the way to more advanced ideas like performance tracking, intelligent performance suggestions, etc.&rdquo; </p>\n\n\n\n<p>P&#363;&#311;is said none of these ideas are set in stone and the team is open to exploring and building modules that will have the highest performance impact after getting more feedback.</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, 19 Apr 2021 17:37: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: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:100:\"Gutenberg Times: Page Template Editor for WordPress 5.8, Videos and Plugins – Weekend Edition #166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17602\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://gutenbergtimes.com/page-template-editor-for-wordpress-5-8-videos-and-plugins-weekend-edition-166/\";s: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:14988:\"<p>Howdy, </p>\n\n\n\n<p>Yes, it&#8217;s been a while that you received a fully curated Weekend edition. After the move it took a while to get my office operational again. We still have too many boxes to unpack, though.  </p>\n\n\n\n\n\n<p>Nevertheless, let&#8217;s catch up on Gutenberg news together! </p>\n\n\n\n<p>All the best, <br />Birgit 💕</p>\n\n\n\n<h2>Gutenberg 10.4 Released (and 10.4.1) </h2>\n\n\n\n<p>The <strong><a href=\"https://gutenbergtimes.com/podcast/changelog-42-full-site-editing-scope-for-wordpress-5-8/\">Gutenberg Changelog episode 42</a></strong> is now available. <strong>Grzegorz (&#8220;Greg&#8221;) Ziolkowski </strong>and I discuss Full-site Editing Scope for WordPress 5.8, Gutenberg’s 10.4,  Gallery Block Refactor and Block-Based Theme updates.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> of the WP Tavern wrote about the Gutenberg 10.4 release: <a href=\"https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer\">Gutenberg 10.4 Introduces Block Widgets in the Customizer</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<h2>Full-Site Editing and WordPress 5.8 </h2>\n\n\n\n<p>If you now find yourself in the position to learn more about the extent of Full-Site Editing experience, I have a real treat for you: <a href=\"https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\">A 30-min video Full-Site Editing Overview by</a>, Anne McCarthy, Developer Relations for the Gutenberg project. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>On April 14, 2021, the Gutenberg and 5.8 release leads held a meeting, with Matias Venture giving a tour of the current state of the Phase 2 of Gutenberg development. The outcome of the meeting was a decision on Go/NoGo for component that make it into core for WordPress 5.8.</p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> provide in <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">her follow-up post </a>a list of the detailed scope, the video of the meeting and a transcript of the recording. </p>\n\n\n\n<h3>The block editor scope </h3>\n\n\n\n<ul><li>Improvements from Gutenberg 9.9 to 10.7 plugin version. </li><li>Introduce 25 new blocks (Query, Site Logo, Navigation,Posts, Comments, Archives etc. ), the most valuable among them will be the Query Block. </li><li><code>theme.json</code> Mechanism for Theme builders (<a href=\"https://developer.wordpress.org/block-editor/how-to-guides/themes/theme-json/\">see developer documentation</a>)</li><li>Template Editor for Pages/Blank Template. (<a href=\"https://youtu.be/c4IFn73Nzvk?t=2859\">see demo by Marcus Kazmierczak</a>)</li><li>Widgets Screen &amp; Block widgets in Customizer.</li><li>Design tools: Duotone, Layout controls, padding, etc.</li></ul>\n\n\n\n<p>There is the caution stated in the post: <em>&#8220;Not all the above are currently ready, but there’s some level of confidence that they can be by the time of 5.8.&#8221;</em></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>For the <strong>Template Editor for Pages/Blank Template</strong> you can see it <a href=\"https://youtu.be/c4IFn73Nzvk?t=2859\">in action in a demo</a> by <strong>Marcus Kazmierczak</strong>, he gave at the Mega Meetup last week. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Bud Kraus</strong> of JoyofWP showed us in his video, <a href=\"https://joyofwp.com/whats-the-future-of-the-wordpress-widget/\">how the Widget screen will look like in the future.</a> It does not show the Widget handling in the Customizer yet, but that is to come to WordPress 5.8. You could see a short piece of it in Matias Ventura&#8217;s demo video from the release leads meeting. It is now already available in the latest Gutenberg plugin release. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2021&#8221;</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">The index 2020 is here</a></p>\n\n\n\n\n<p><strong>Justin Tadlock</strong> summarized last week&#8217;s announcements in <strong><a href=\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8\">Full Site Editing Is Partly a ‘Go’ for WordPress 5.8</a></strong></p>\n\n\n\n<h2>Testing Full-Site Editing</h2>\n\n\n\n<p>As the latest Full-Site Editing Call of Testing, <strong>Anne McCarthy</strong> has a <strong><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Query Quest for you.</a></strong> Again with a great set of test instruction, you are guided towards usage and various features of the Query Block and its accompanying new post blocks for title, content, comments, feature image and pagination.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> discussed this task a bit further in his article: <strong><a href=\"https://wptavern.com/fse-outreach-round-5-venturing-out-a-query-quest\">FSE Outreach Round #5: Venturing out a Query Quest</a>.</strong> &#8220;Testing never has to be boring. I encourage participants to grab inspiration from their lives as they venture out on their Query Quest.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Apropos Testing: <strong>Sarah Gooding</strong> wrote about our Gutenberg Nightly plugin to get the latest development of the block-editor in an easy to handle plugin. <strong><a href=\"https://wptavern.com/set-up-a-gutenberg-test-site-in-2-minutes-with-the-gutenberg-nightly-plugin\">Set Up a Gutenberg Test Site in 2 Minutes with the Gutenberg Nightly Plugin</a></strong>.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s main (trunk) branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n<p></p>\n\n\n\n\n<p><strong>Anne McCarthy</strong> curated all the feedback from the fourth testing call: <a href=\"https://make.wordpress.org/test/2021/03/30/fse-program-custom-404-page-testing-summary/\"><strong>FSE Program Custom 404 Page Testing Summary</strong></a></p>\n\n\n\n<h2>Block-Based Themes</h2>\n\n\n\n<p><strong>Helen Hou-Sandi</strong> streamed on Twitch her <a href=\"https://www.twitch.tv/videos/981424705\">exploration session to create a block-based theme</a> for the Full-Site Editing.</p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Kjell Reigstad</strong> opened an issue for <a href=\"https://github.com/WordPress/gutenberg/issues/30508\"><strong>Query Block Pattern inspirations.</strong></a> There are great examples posted that could be converted to pattern, that could be bundled with WordPress 5.8  </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong>Marcus Kazmierczak</strong> also used Twitch to stream his <a href=\"https://www.twitch.tv/mkaz7000\">Lunch &amp; Learn series on Block-based themes.</a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>Keep abreast on specific Theme related development and discussions with the weekly round-up from the Themes Team. <strong>Kjell Reigstad</strong> posted this week&#8217;s edition. <a href=\"https://make.wordpress.org/themes/2021/04/16/gutenberg-themes-week-of-apr-12-2021/\"><strong>Gutenberg + Themes: Week of Apr 12, 2021</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>A couple of PRs that should help with <strong>transitioning existing themes to be block-based:</strong></p>\n\n\n\n<ul><li><a href=\"https://github.com/WordPress/gutenberg/pull/30345\"><strong>Add do_block_template_part function</strong></a><br />New gutenberg_block_template_part(), gutenberg_block_header_area(), and gutenberg_block_footer_area() functions to help pull block-based template parts into existing PHP templates: </li><li><a href=\"https://github.com/WordPress/gutenberg/pull/30438\"><strong>Allow creating custom block templates in classic themes</strong></a> Allowing people to create and use block-based page template for certain pages on their site, even while using a non-block-based theme.</li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>In their latest episode of WPCafe co-hosts <strong>Mark Wilkinson</strong> and <strong>Keith Devon</strong> talked about <a href=\"https://www.youtube.com/watch?v=jAIlY3lTAos\">Building Twenty-Twenty-One with Caroline Nymark and Mel Choyce-Dwan</a>. </p>\n\n\n\n<h2>Plugins for the Block Editor</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/gutentor/\">Gutentor</a></strong> published a collection of 70+ Blocks and layouts for Gutenberg Editor. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p>If you are working on your set of Blocks for the editor, <strong>Justin Tadlock</strong> has some thoughts to consider: <a href=\"https://wptavern.com/yet-another-wordpress-block-library-plugin\"><strong>Yet Another WordPress Block Library Plugin</strong></a>. He is making a well though through case to suggest more unique blocks to fill the gap to the core blocks. It seems to me that, two years of seeing block collections being acquired by big companies like Atom Blocks, Co Blocks and latest <a href=\"https://wptavern.com/ithemes-acquires-kadence-wp-plans-to-sunset-legacy-themes-in-2022\">Kadence Blocks</a>, might tempt a small developer team to come up with  another set of blocks matching a specific theme and hope for an acquisition by another big company in the space. There might be space for a few more, indeed. </p>\n\n\n\n<p>Tadlock&#8217;s longs for something new, a unique extension of core or a missing tool:</p>\n\n\n\n<ul><li><a href=\"https://wptavern.com/display-digital-sheet-music-with-the-wordpress-block-editor\">Display Digital Sheet Music With the WordPress Block Editor</a></li><li><a href=\"https://wptavern.com/block-a-saurus-embeds-a-side-scrolling-t-rex-game-via-the-block-editor\">Block-a-saurus Embeds a Side-Scrolling T-Rex Game via the Block Editor</a></li><li><a href=\"https://wptavern.com/emoji-conbini-and-the-case-for-a-block-enhancements-directory\">Emoji Conbini and the Case for a Block Enhancements Directory</a></li><li><a href=\"https://wptavern.com/insert-font-awesome-icons-into-the-block-editor-via-the-jvm-gutenberg-rich-text-icons-plugin\">Insert Font Awesome Icons Into the Block Editor via the JVM Gutenberg Rich Text Icons Plugin</a></li><li><a href=\"https://gutenbergtimes.com/writers-rejoice-iceberg-delivers-distraction-free-writing-for-wordpress/\">Writers Rejoice! Iceberg Delivers Distraction-free Writing for WordPress</a></li></ul>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://wordpress.org/plugins/conditional-blocks/\">Conditional Blocks</a></strong> by Morgan Hvidt allows you to create block that are displayed when certain conditions apply. We saw other plugins that offer that, like <a href=\"https://wordpress.org/plugins/block-visibility/\">Block Visibility by Nick Diego</a>. This one is a bit different. It allows you to change content depending on HTTP referrer, so if someone comes from Twitter, they could see a different message than someone coming from a Google Search or a link in a newsletter or an affiliate link. The plugin is also available as a pro version with premium features at <a href=\"https://conditionalblocks.com\">conditionalblocks.com</a>. </p>\n\n\n\n\n<p> <a href=\"https://gutenbergtimes.com/podcast/changelog-42-full-site-editing-scope-for-wordpress-5-8/\"><strong>Episode #4</strong>2 is now available</a>, with new co-host <strong>Grzegorz Ziolkowski</strong></p>\n\n\n\n<p> <strong>Subscribe to the&nbsp;<a href=\"https://gutenbergtimes.com/podcast/\">Gutenberg Changelog</a>&nbsp;podcast </strong><br />🎙️&nbsp;<a href=\"https://open.spotify.com/show/620NwVKQJGdTupy36zYxvg?mc_cid=4b6c9f88fe\">Spotify</a>&nbsp;|&nbsp;<a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9ndXRlbmJlcmd0aW1lcy5jb20vZmVlZC9wb2RjYXN0\">Google</a>&nbsp;|&nbsp;<a href=\"https://podcasts.apple.com/us/podcast/gutenberg-changelog/id1469294475\">iTunes</a>&nbsp;|&nbsp;<a href=\"https://pca.st/podcast/f8445ec0-7508-0137-f267-1d245fc5f9cf\">PocketCasts</a>&nbsp;|&nbsp;<a href=\"https://www.stitcher.com/show/gutenberg-changelog\">Stitcher</a>&nbsp;|<br />🎙️&nbsp;<a href=\"https://www.podbean.com/podcast-detail/chi7j-9904a/Gutenberg-Changelog-Podcast\">Pod Bean</a>&nbsp;|&nbsp;<a href=\"https://castbox.fm/channel/Gutenberg-Changelog-id2173375\">CastBox</a>&nbsp;|&nbsp;<a href=\"https://www.podchaser.com/podcasts/gutenberg-changelog-878239/\">Podchaser</a>&nbsp;|&nbsp;<a href=\"https://gutenbergtimes.com/feed/podcast\">RSS Feed</a>&nbsp;</p>\n\n\n\n<img />\n\n\n\n\n<h2>People and Community</h2>\n\n\n\n<p>It&#8217;s been already a year that <strong>Anne McCarthy</strong> joined the Gutenberg team as a developer relations wrangler. It has been a great pleasure meeting Anne and collaborating with her has been quite inspiring, and I learned a lot from her wisdom and her wealth of ideas. She has also become a good friend. She is som much better and being a remote friend that I ever will be. On her personal block Anne published <a href=\"https://nomad.blog/2021/04/17/one-year-in-devrel/\"><strong>One year in DevRel</strong></a></p>\n\n\n\n<p>Anne&#8217;s pioneer work with WordPress open-source project has been so successful that <a href=\"https://boards.greenhouse.io/automatticcareers/jobs/2937422\">Automattic wants to sponsor another person for developer relations.</a></p>\n\n\n\n<h2>Developing with ReactJS and Gutenberg Blocks. </h2>\n\n\n\n<p><strong>Rob Stinson</strong> wrote a tutorial on how <a href=\"https://studiopress.blog/the-ultimate-guide-to-building-custom-collections-in-genesis-blocks/\">to building custom Collections in Genesis Blocks.</a> Now Collections in this context are Layout templates, that extend existing Genesis blocks. </p>\n\n\n\n<hr class=\"wp-block-separator is-style-wide\" />\n\n\n\n<p><strong> Mark Howells-Mead </strong>uses <a href=\"https://permanenttourist.ch/2021/04/using-react-and-wordpress-to-build-an-interactive-performant-single-page-application\">ReactJS to build interactive single page applications with WordPress</a> and wrote a tutorial. It&#8217;s not at all about Blocks and Gutenberg, but it&#8217;s related to the skill set of learning ReactJS and hopefully inspired developer to gradually make the transition. </p>\n\n\n\n\n\n<p></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, 18 Apr 2021 23:33: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:18:\"Birgit Pauli-Haack\";s: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:67:\"WPTavern: Gutenberg 10.4 Introduces Block Widgets in the Customizer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"https://wptavern.com/gutenberg-10-4-introduces-block-widgets-in-the-customizer?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-10-4-introduces-block-widgets-in-the-customizer\";s: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>The latest release of the Gutenberg plugin (<a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4)</a> brings <a href=\"https://github.com/WordPress/gutenberg/issues/29285\">block widgets into the Customizer</a>. When customizing widget-enabled areas, a new block inserter icon is now available for dropping blocks into sidebars. This is the first iteration of <a href=\"https://github.com/WordPress/gutenberg/issues/26900\">block management in the Customizer</a>, tackling the technical integration for editing blocks while also taking advantage of the live preview in the Customizer.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Version 10.4 includes several design updates to the&nbsp;Site Editor List View, bringing more consistency to the icon sizing and spacing, as well as&nbsp;new colors for hover, focus, and select states. The publishing UI has been updated to <a href=\"https://github.com/WordPress/gutenberg/pull/30231\">display the site icon and name</a>, adding a more personal touch to this flow while also making it more clear for full-screen or mobile users.</p>\n\n\n\n<img />Gutenberg 10.4 <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">release post</a>\n\n\n\n<p>More progress on site editing experiments includes the following notable updates:  </p>\n\n\n\n<ul><li>the ability to revert template customizations directly in the editor</li><li>many improvements to the Navigation block, including&nbsp;a&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/30403\" target=\"_blank\">new &ldquo;Post Format Link&rdquo; variation</a>, a&nbsp;<a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/gutenberg/pull/30281\" target=\"_blank\">clearer placeholder state</a>, and more style updates</li><li><a href=\"https://github.com/WordPress/gutenberg/pull/30521\">Better labeling</a> for differentiating &ldquo;Custom Styles&rdquo; vs global style changes in the site editor saving panel </li><li>New &ldquo;<a href=\"https://github.com/WordPress/gutenberg/pull/29839\">manage with live preview link</a>&rdquo; in the Widgets editor</li></ul>\n\n\n\n<p>The block editor still <a href=\"https://github.com/WordPress/gutenberg/issues/29976\">fails to deliver a consistent preview</a> of core blocks on the frontend in many cases. Version 10.4 brings greater parity between the editor/frontend with more consistent markup for archives, latest comments, quote, and separator blocks, with improved default padding to match the browser&rsquo;s default.  The GitHub <a href=\"https://github.com/WordPress/gutenberg/issues/29976\">issue</a> for this improvement contains a to-do list for additional blocks that need more polishing on previews, including search, paragraph, columns, embed, post title, and more.</p>\n\n\n\n<p>For a full list of all the enhancements and bug fixes, check out the <a href=\"https://make.wordpress.org/core/2021/04/14/whats-new-in-gutenberg-10-4-14-april/\">10.4 release post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Apr 2021 13:59: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: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:69:\"Gutenberg Times: Video: Full-Site Editing Overview with Anne McCarthy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=17545\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://gutenbergtimes.com/video-full-site-editing-overview-with-anne-mccarthy/\";s: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:53595:\"<p>As part of the <a href=\"https://www.youtube.com/watch?v=c4IFn73Nzvk\">Meta Meetup on April 15th 2021</a>, Anne McCarthy gave a presentation on what Full-Site Editing entails, the updated scope of WordPress 5.8, what the FSE outreach program is and what issues surfaced during the four calls for testing from the group. </p>\n\n\n\n<p>It&#8217;s a fantastic and fast-paced presentation and covers a lot of ground. It&#8217;s ideal for WordPress users that just now want to catch up on all the buzz around Full&#8211;Site Editing and learn what will come to WordPress in the 5.8 release in July 2021. </p>\n\n\n\n<p>Big Thank You to Anne for allowing us to publish the video here with the transcript. </p>\n\n\n\n<p><em>For those interested how the template editor works,  <a href=\"https://youtu.be/c4IFn73Nzvk?t=2909\">jump right in to Marcus Kasmierczak&#8217;s live demo</a> portion of the WordPress Mega Meetup recording</em></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h2 id=\"0-sha\">Shared Resources</h2>\n\n\n\n<ul><li><a href=\"https://wordpress.org/about/roadmap/\">Roadmap showing phase 2</a>&nbsp;&nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/24551\">Full Site Editing Milestones</a>&nbsp;&nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/30662\">Special shoutout to the Gradual Adoption Milestone</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/test/2021/04/14/fse-program-testing-call-5-query-quest/\">Query Quest &#8211; Call for testing the Query Block</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">Go/No go</a> &nbsp;</li><li><a href=\"https://github.com/WordPress/gutenberg/issues/29398\">Preview</a>&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/test/handbook/full-site-editing-outreach-experiment/\">FSE Outreach Program</a>:&nbsp;&nbsp;</li><li><a href=\"https://make.wordpress.org/core/2021/03/16/high-level-feedback-from-the-fse-program-march\">High-level feedback from the Full Site Editing Program thus far</a></li><li><a href=\"https://critterverse.blog/2021/03/23/full-site-editor-404-test/\">404 design</a></li><li><a href=\"https://www.twitch.tv/mkaz7000\">Marcus Kazmierczak Streams on Twitch</a>  </li></ul>\n\n\n\n<p><em><a href=\"https://gutenbergtimes.com/feed/#transcript\">See transcript below</a></em></p>\n\n\n\n<div class=\"ngl-articles ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap\">\n	\n			<!--[if !mso]><\\!-->\n			<div class=\"ngl-article-left-mobile\">\n				<table border=\"0\" width=\"100%\" cellpadding=\"10\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/vidar-nordli-mathisen-4NlLMwdFoLY-unsplash.jpg?w=640&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><span>Full-Site-Editing &#8211; the Ultimate Resource List</span></a></div><div class=\"ngl-article-excerpt\">Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.&nbsp;— Marie Curie&nbsp;</div><div class=\"ngl-article-date\">18 Apr 2021</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			<!-- <![endif]-->\n\n			<div class=\"ngl-article ngl-article-img-left\">\n\n				\n				<div class=\"ngl-article-left\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/02/vidar-nordli-mathisen-4NlLMwdFoLY-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-right\"><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing/\" target=\"_self\" rel=\"\"><span>Full-Site-Editing &#8211; the Ultimate Resource List</span></a></div><div class=\"ngl-article-excerpt\">Nothing in life is to be feared, it is only to be understood. Now is the time to understand more, so that we may fear less.&nbsp;— Marie Curie&nbsp;</div><div class=\"ngl-article-date\">18 Apr 2021</div></div>\n			</div>\n\n		\n			<!--[if !mso]><\\!-->\n			<div class=\"ngl-article-left-mobile\">\n				<table border=\"0\" width=\"100%\" cellpadding=\"10\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/03/kelly-sikkema-gcHFXsdcmJE-unsplash.jpg?w=640&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><span>Full-site Editing MVP: Can I Build a Landing Page?</span></a></div><div class=\"ngl-article-excerpt\">Josepha Haden Chomphosy was the featured guest on the inaugural episode of the WPTavern Jukebox podcast, hosted by Nathan Wrigley. Chomphosy explained her unofficial benchmark for the Go/NoGo decision on Full-site Editing for the WordPress core merge.&nbsp;</div><div class=\"ngl-article-date\">27 Mar 2021</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			<!-- <![endif]-->\n\n			<div class=\"ngl-article ngl-article-img-left\">\n\n				\n				<div class=\"ngl-article-left\"><div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><img src=\"https://i2.wp.com/gutenbergtimes.com/wp-content/uploads/2021/03/kelly-sikkema-gcHFXsdcmJE-unsplash.jpg?w=640&ssl=1\" /></a></div></div><div class=\"ngl-article-right\"><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/full-site-editing-mvp-can-i-build-a-landing-page/\" target=\"_self\" rel=\"\"><span>Full-site Editing MVP: Can I Build a Landing Page?</span></a></div><div class=\"ngl-article-excerpt\">Josepha Haden Chomphosy was the featured guest on the inaugural episode of the WPTavern Jukebox podcast, hosted by Nathan Wrigley. Chomphosy explained her unofficial benchmark for the Go/NoGo decision on Full-site Editing for the WordPress core merge.&nbsp;</div><div class=\"ngl-article-date\">27 Mar 2021</div></div>\n			</div>\n\n		\n		\n		</div>\n\n</div>\n\n\n<p class=\"has-large-font-size\" id=\"transcript\">Transcript </p>\n\n\n\n<div class=\"wp-block-group has-background\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-sha\">Shared Resources</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-strong-milestones-of-full-site-editing-experience-strong\">Milestones of Full-Site Editing Experience</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-strong-infrastructure-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-browsing-templates-and-template-parts-strong\">Browsing Templates and Template Parts</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-styling-global-styles-theme-json-strong\">Styling &#8211; Global Styles + theme.json</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-20-theme-blocks-strong\">20+ Theme Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-query-block-the-loop-or-post-list-strong\">Query Block &#8211; The Loop or Post List</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-navigation-block-strong\">Navigation Block</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-gradual-adoption-widgets-customizer-hybrid-themes-nbsp-strong\">Gradual Adoption &#8211; Widgets, Customizer, Hybrid Themes&nbsp;</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-whats-coming-to-word-press-5-8-strong\">What&#8217;s coming to WordPress 5.8</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-short-demo-template-editing-navigation-block-and-multi-entity-saving-strong\">Short Demo: Template Editing, Navigation Block and Multi-Entity Saving</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-timeline-of-5-8-release-strong\">Timeline of 5.8 Release</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-what-is-the-fse-outreach-experiment-program-strong\">What is the FSE Outreach Experiment Program?</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-whats-the-goal-strong\">What&#8217;s the goal</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-why-was-it-started-strong\">Why was it started?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-how-to-join-fse-outreach-experiment-strong\">How to Join FSE Outreach Experiment</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-high-level-feedback-from-calls-for-testing-strong\">High-Level Feedback from Calls for Testing</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#16-strong-preview-content-strong\">Preview Content</a></li><li><a href=\"https://gutenbergtimes.com/feed/#17-strong-saving-process-strong\">Saving Process</a></li><li><a href=\"https://gutenbergtimes.com/feed/#18-distinction-between-editing-area\">Distinction between editing area.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#19-rethinking-width-and-alignment\">Rethinking Width and Alignment.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#20-strong-general-usability-improvements-strong\">General usability improvements.</a></li><li><a href=\"https://gutenbergtimes.com/feed/#21-strong-improving-placeholders-strong\">Improving Placeholders.</a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#22-strong-will-full-site-editing-take-over-my-site-strong\">Will full site editing take over my site?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#23-strong-what-about-the-block-based-navigation-and-widget-screens-strong\">What about the block-based navigation and widget screens?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#24-strong-site-builders-strong\">Site builders</a></li><li><a href=\"https://gutenbergtimes.com/feed/#25-strong-how-is-this-going-to-impact-themes-strong\">How is this going to impact themes?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#26-strong-what-pathways-are-going-to-be-created-strong\">What pathways are going to be created?</a></li><li><a href=\"https://gutenbergtimes.com/feed/#27-strong-whats-the-best-way-to-prepare-nbsp-strong\">What&#8217;s the best way to prepare?&nbsp;</a></li><li><a href=\"https://gutenbergtimes.com/feed/#28-strong-stay-connected-with-anne-mc-carthy-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Stay connected with Anne McCarthy</a></li></ul></div>\n</div></div>\n\n\n\n<p class=\"has-small-font-size\"><em>Featured image: 404 template by Channing Ritter on critterverse.blog</em></p>\n\n\n\n<p>Howdy. To start, thanks so much for having me. This is a presentation about full site editing. I&#8217;m very excited to talk with you. This is a feature I&#8217;ve been thinking a lot about over the last year and I&#8217;m excited to share with you all. I&#8217;m also really keen to learn from each of you what you&#8217;re worried about, what you&#8217;re excited about, how you think full-site editing can improve your workflows, and more. So this is prerecorded because I wanted to make sure with so much information going around, wanted to make sure I had all the details lined up and so I could pause and rework certain sections. But please know that I welcome questions. So while you can&#8217;t interrupt me during the presentation, there will be a whole section at the end. Pull out your pen and paper, write them down, and know that they&#8217;re very, very welcomed. But for now, let&#8217;s dig in.</p>\n\n\n\n<p>So briefly about me, I&#8217;m actually originally from Winter Park, Florida. So I haven&#8217;t been home in about a year and a half, and thank you for letting me virtually return home by participating in this meetup. In 2011, I first found WordPress as a student at UNC Chapel Hill. I worked on their multi-site, had a great time. 2013, I went to my first ever WordCamp. 2014, joined Automatic as a happiness engineer focused on VaultPress and had a great time focusing on security of websites. It gave me a really interesting look into concerns people have about websites that most people don&#8217;t think about. Then 2020, I switched into the developer relations position at Automatic and have been there ever since.</p>\n\n\n\n<p>So let&#8217;s get meta and talk about the talk. (laughing). So to start, I&#8217;m going to zoom out really big and then slowly put pieces together until we kind of get a nice map of what full-site editing is with all the details. So this will look kind of like first answering some big, high-level questions, digging into then how the work is actually being done, so going from high level, &#8220;What is this? Why does it help me?&#8221; to &#8220;How is this work actually being approached? What are the pieces of the work that I need to know, the role of the outreach program?&#8221; Then I want to address some key topics and questions that I often get asked when I&#8217;ve presented at other places and talked on other podcasts about full-site editing or just one-on-one with people. I love to talk about full-site editing. So hopefully some of the key topics and questions can help get people thinking about other things they want to ask about.</p>\n\n\n\n<p>So let&#8217;s dig into the first big picture question. Why is this being done at all? Simply put, it&#8217;s to empower users. Rather than having a specific part of the site locked away in a theme or requiring a plugin, full-site editing will basically open it up to customize any part of your site the way you want to, or, on the flip side, you can let it be, or if you&#8217;re an agency, you could lock certain sites down or certain parts of a site down, depending upon how you want users to have access. So it&#8217;s a pretty powerful, big mission to actually deliver on full site editing.</p>\n\n\n\n<p>So I answered why is this being done. Now let&#8217;s dig into how does this fit into the WordPress roadmap? So full-site editing is a major part of phase two of the current roadmap. It&#8217;s not the only part, though. There&#8217;s actually other interrelated projects, including things like block patterns, the block directory, block-based themes. So it&#8217;s just one piece of this larger roadmap, but it&#8217;s one of the major grounding points of phase two of the roadmap.</p>\n\n\n\n<p>So what is full-site editing at a high level? Essentially, it&#8217;s a collection of features, and it&#8217;s important that you get the collection part. But it&#8217;s a collection of features that bring the familiar experience of blocks to all parts of your site, rather than just posts and pages. But Anne, what does a collection of features mean? Basically, I&#8217;ve noticed people tend to refer to full-site editing as one big thing. It&#8217;s like an on-off switch. It&#8217;s this monolith, and it&#8217;s actually not. It&#8217;s not this binary thing. It&#8217;s way better to talk about how there&#8217;s different pieces that fit together and interrelate, because it actually gives flexibility for release squads to release what&#8217;s ready, rather than all of it at once. So while it might be easier to talk about how it&#8217;s this one big thing, I encourage you all to kind of think about the different pieces, if you can, and I&#8217;ll touch on this more in a bit.</p>\n\n\n\n<p>Okay. So what does full-site editing actually allow me to do, right? So cool, Anne, a collection of features, but show me the money. (laughing). So this is an example of a 404 page. So a 404 page, typically you&#8217;re not actually able to edit, but with full-site editing, you could actually create this 404 page. This was actually done by one of the automatic designers, Channing. Shout-out to Channing. She did this as part of one of the tests for full-site editing, the outreach program. So it&#8217;s a pretty beautiful thing. While we all might not have the design chops that Channing does, it is pretty neat to see kind of a very tangible, hands-on example of what full-site editing unlocks you to be able to do.</p>\n\n\n\n<p>To get more specific, basically, if you&#8217;re a user, imagine editing the template that a specific post has for a specific category. For theme authors, you&#8217;ll be able to tap into design tools that allow you to focus more on actually creating a really compelling experience and less on getting the code in place and hacking things up. You can also out in and out of whatever you&#8217;re ready for, which is really exciting. But ideally, for theme authors, it&#8217;s going to be a huge change. It&#8217;ll allow creating themes to be much, much easier. If you&#8217;re an agency, you&#8217;ll have greater control over what you can offer clients, including setting custom brand colors with presets to locking down various aspects for consistency, such as typography or wanting only certain default colors to be used.</p>\n\n\n\n<h2 id=\"0-strong-milestones-of-full-site-editing-experience-strong\">Milestones of Full-Site Editing Experience</h2>\n\n\n\n<p>So how is this work being done? So rather than trying to go through everything in one go, this project has actually been broken down into seven different milestones. Some of these milestones are completely separate, their own thing. Some are very interrelated. Some mix and match in different ways. But we&#8217;re going to go through each of them so you can get a sense of how this is being done. I&#8217;m going to try to stay at a high level before going into a very brief demo midway through the presentation. But hopefully this&#8217;ll give you a sense of what this looks like.</p>\n\n\n\n<h3 id=\"1-strong-infrastructure-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Infrastructure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h3>\n\n\n\n<p>So milestone one, this was actually such a big milestone that it was broken into two parts. Essentially, this is all about laying the foundation, everything from multi-entity saving, which is actually being displayed here in the GIF that you see, where you can actually update multiple things at once, including a template part. You update your header, you update a post, and you update your footer. It&#8217;ll show all the changes happening and allow you to check and uncheck different boxes to save. Basically, just think about this as building the foundation of the experience, the technical foundation, unlocking things like being able to edit a template directly to working on specific blocks for full-site editing, like the site title. So we have a site title block, and it updates everywhere you have it listed.</p>\n\n\n\n<h3 id=\"2-strong-browsing-templates-and-template-parts-strong\">Browsing Templates and Template Parts</h3>\n\n\n\n<p>Milestone two, browsing. Again, there&#8217;s another little visual so you can see what this actually looks like. This is basically giving you a map and a GPS to know your location, how to get where you need to go for your site. So because there are these new parts of editing your site that are unlocked with full-site editing, like template editing and template parts, like a header or footer, there needs to be a way to navigate between them. So this milestone is dedicated to that. How can we make it as easy as possible for you to you get where you need to go?</p>\n\n\n\n<h3 id=\"3-strong-styling-global-styles-theme-json-strong\">Styling &#8211; Global Styles + theme.json</h3>\n\n\n\n<p>Milestone three, styling. So this actually covers a couple different layers. I&#8217;m going to break it down in this slide and then the next one to help give you a sense visually of what this looks like. But this includes everything from the technical requirements to make various levels work and the UI for users. So you can actually see a depiction of the future design for the UI that users will interact with in the imagery here. So there&#8217;s generally three layers, including selling for local blocks, theme defaults, and then global modifications or what we often call global styles. You can think of global styles as basically having the option to edit all aspects of your site. So if you want to set a typography that goes across your entire site, if you want to have certain colors for all H1 headers, you can set that up with global styles.</p>\n\n\n\n<p>Currently, much of the work has been focused on the technical underpinnings, especially around aspects like theme.json, which is a very key component for block themes and a really big tool for block theme authors. But for 5.8, the focus is generally going to be on merging the non-user interface parts of global styles. So don&#8217;t expect to interact with this system unless you&#8217;re a theme author. If you are a theme authro, get really excited. Here&#8217;s a little visual, just you can get a sense of it. So these are the different layers that have to interact in the styling system and hierarchy that needs to be thought of when working on this milestone.</p>\n\n\n\n<h3 id=\"4-strong-20-theme-blocks-strong\">20+ Theme Blocks</h3>\n\n\n\n<p>Milestone four, theme blocks. So because full-site editing opens up so many more aspects of the site to edit, new blocks had to be created, basically. So if you&#8217;re creating a new template for a specific category and you&#8217;re putting in post content and you want to add the post author block, which you can see here, you can quickly add it in, customize it to your liking, add in post comment, add in post data, remove the post date. You can edit each parts of these things, which pretty excited about this, is there&#8217;s actually 20-plus blocks that fall into this category. If all goes as planned, some of those will be released for 5.8 and available potentially for all sites. So even if you&#8217;re not using a block theme, you could have access to these theme blocks, which is pretty powerful and pretty cool.</p>\n\n\n\n<h3 id=\"5-strong-query-block-the-loop-or-post-list-strong\">Query Block &#8211; The Loop or Post List</h3>\n\n\n\n<p>Query block. So the query block has its own milestone, because it&#8217;s a pretty powerful block. It&#8217;s also meant to be a theme author tool, so in the long run, if you&#8217;re a user, imagine that you interact with what we call block variations, which basically are just different variations of a block, as the name implies. But imagine you want to add in your latest post. You&#8217;ll add the latest post block, but underneath it, what will be powering that experience of adding your latest post will be the query block. Essentially, as the name implies, it allows you to query posts and pages and display them in different arrangements on the page. I&#8217;m very excited, actually. In Gutenberg 10.5, which will be released in just about two weeks, there&#8217;s going to be some new patterns. You can see right here, large, medium, small are the current selection of patterns that you have for the query block. But pretty soon, there&#8217;s going to be a grid pattern and a couple other cool ones, which is pretty exciting. Generally speaking, though, if you&#8217;re an end user, don&#8217;t expect to interact with this. If you&#8217;re a theme author, get excited.</p>\n\n\n\n<h3 id=\"6-strong-navigation-block-strong\">Navigation Block</h3>\n\n\n\n<p>Navigation block. Again, this is just a single block, but don&#8217;t be fooled. It&#8217;s definitely a mighty one. So this last one is dedicated to all things navigation block, both in terms of structure and design. You can see in this little GIF I have going on, I&#8217;m just kind of making little design changes and moving things around so you can get a sense of what it&#8217;s like to interact with this block. This milestone actually includes everything from how do you build a really simple menu with a few items to thinking about how to create a really large mega menu and add in new blocks, like the search block that you can see here. We&#8217;re even adding sub-menus, different designs, different layouts, and more.</p>\n\n\n\n<h3 id=\"7-strong-gradual-adoption-widgets-customizer-hybrid-themes-nbsp-strong\">Gradual Adoption &#8211; Widgets, Customizer, Hybrid Themes&nbsp;</h3>\n\n\n\n<p>So the last piece of the milestones is the gradual adoption. I hope this GIF makes you laugh, but also seriously, this is the intent, is we slowly want people to be able to adapt in the way that they can. Once more of these pieces are completed, there&#8217;s basically a ton of room to start exploring how adoption might look like for those who can&#8217;t or don&#8217;t want to restructure a full theme. So this might be an intermix of block-based things and regular PHP templates, or it might be covered by projects like the block-based widget editor and the navigation screen. Both of those projects I&#8217;ll cover later, but for now, just keep in mind that this is intentionally a milestone. We want to allow for gradual adoption and want people to have lots of pathways in to taking advantage of full site editing.</p>\n\n\n\n<h2 id=\"8-strong-whats-coming-to-word-press-5-8-strong\">What&#8217;s coming to WordPress 5.8</h2>\n\n\n\n<p>So what&#8217;s coming to WordPress 5.8? So just last week, a post went out from Josepha, who is the executive director of the WordPress project. I want to read a quote from it just to kind of set the tone and give you a sense. So full-site editing is a collection of projects, and together, they represent a big change, arguably too much for a single release. The most important context to share is that it isn&#8217;t shipping as the full default experience for users. One of the clearest pieces of feedback from the phase one merge process was that there wasn&#8217;t enough time for extenders, agencies, theme authors, plugin developers, site builders, et cetera to prepare for the upcoming changes. With that in mind, this merge process won&#8217;t be an on-off switch, and you can see I&#8217;ve bolded various specific parts that I hope you take home with you.</p>\n\n\n\n<p>All right. So let&#8217;s talk WordPress 5.8 plans. This is up-to-date information as of today. A post was released from Josepha on [inaudible 00:12:21], if you&#8217;d like to check it out. From the call that the project leadership had, this is what they came up with for the 5.8 plans. This includes improvements from Gutenberg 9.9 and beyond. So we always package different versions of Gutenberg into major releases. This release is no different. There&#8217;ll be an introduction of new blocks, including query, site logo, navigation, et cetera. These are each very powerful blocks, very exciting to see. theme.json mechanism, this is part of what allows block themes to use different global styling, which will be very cool for block authors to get their hands on.</p>\n\n\n\n<p>The template editor for pages and a blank template, I&#8217;ll actually be showing a demo of this in a moment. So hang tight there, but it&#8217;ll all make sense in a bit. The widget screen and block widgets in the customizer, this is basically work being done to bring blocks to the widgets experience. I will talk more about that later, about how it&#8217;s a stepping stone towards full-site editing. Then finally, design tools, so even more design tools that people can hook into, including duotone, which adds a really cool color filter, layout controls, padding, and more.</p>\n\n\n\n<h3 id=\"9-strong-short-demo-template-editing-navigation-block-and-multi-entity-saving-strong\">Short Demo: Template Editing, Navigation Block and Multi-Entity Saving</h3>\n\n\n\n<p>So at this point, let&#8217;s pause for a minute and actually show off one of the features that is aimed to be included in 5.8.&nbsp;</p>\n\n\n\n<p>I&#8217;m going to show you template editing, the navigation block, and just some of the cool flows with multi-entity saving is one of the things that we talked about that will make it into this release. So I&#8217;m in the post editor. I have a new post. I love to blog and write and present. I hit Update. Super happy, whatever. Open up the post settings, and there&#8217;s this new section that allows you to both create a brand new template. This will ideally be used both in themes that are block-based themes, so they&#8217;re ready for full-site editing, and potentially for classic themes. There&#8217;s actually work underway so that this will be available in anything being used in WordPress right now.</p>\n\n\n\n<p>So right now, if I hit Edit, this will take me into the template that this post is using. So let&#8217;s do that now. So as you can see, this drops me into what looks like the entire site. So you can see I have my header up here, I have the footer down here, and I can make changes directly to them. So, for example, if I jump in here, this is the navigation block, and I haven&#8217;t yet set it up. So I can say add all pages, and I can start empty. In this case, I&#8217;ll say, &#8220;You know what? Let&#8217;s start empty.&#8221; Let&#8217;s say I want to add a custom link. One of the cool things you can actually do, you can quickly select from here, or let&#8217;s say I want to add a new post. Let me first select post link.</p>\n\n\n\n<p>So adventures around the world. Let&#8217;s pretend I&#8217;m just inspired where I&#8217;m writing this. I can actually create a draft post, which is pretty cool, and it&#8217;ll show up here. It will not show up on the front end, since it&#8217;s a draft, but it actually creates a page draft for this with this title automatically. So let&#8217;s say I&#8217;m scrolling through here. I&#8217;m going, &#8220;Oh, this looks pretty good. Actually, I kind of want to see what it looks like if I add an image to the post here.&#8221; Pull up an image block. Oh, my media library. Hammocks. Can&#8217;t get enough hammocks. Going to throw that in there. Great. So at this point, I&#8217;ve made changes to the actual header. I&#8217;ve made changes to the post. I&#8217;m just going to apply and see what happens.</p>\n\n\n\n<p>So this is the multi-entity saving that I mentioned earlier. Now, as you can see, it has a section for posts, so it&#8217;s saying, &#8220;Hey, you edited this post,&#8221; and it has a section saying, &#8220;Hey, you edited the header.&#8221; So at this point, I&#8217;m going to hit Save, because I want both those changes to propagate. Now I&#8217;m back into my post, into the writing flow, and I can easily switch back and forth. I can also select a new one. But yeah, hopefully this gives you a good sense of one of the key parts that&#8217;s being worked on for inclusion in 5.8. There will be a demo later, but this is just a taste.</p>\n\n\n\n<h2 id=\"10-strong-timeline-of-5-8-release-strong\">Timeline of 5.8 Release</h2>\n\n\n\n<p>To help set the stage for what you can prepare for, here are some upcoming dates to keep in mind. If you&#8217;re like me, time is moving really strangely, so I like to have dates to kind of anchor me. Feel free to take a screenshot of this or write it down if you&#8217;d like. So April 13th and April 27th, these are the go and no-go decision dates. So right now, project leadership actually has gathered. So you might notice if you are good with dates and good with time right now, April 13th has come and gone. So this date has passed, and project leadership has met actually to go through different FSE-related features and projects to figure out what might be ready for 5.8. I would expect to see more high-level posts throughout the month, especially after the second date, the April 27th date. That&#8217;s when final decisions will be made around 5.8.</p>\n\n\n\n<p>Then if all goes well, the beta period for WordPress 5.8 will start on June 8th. So people can actually start getting their hands on the tools that are going to be in place in the actual release and testing it and finding bugs and improving things from there. July 20th is the actual date of WordPress 5.8 and when it&#8217;s released. This is being considered as an open beta, where theme authors, plugin authors, agencies, and more can dig into the tools that are being offered and that I went over previously. Then in December 2021, that&#8217;s around the time when WordPress 5.9 will be released, and this is when I expect to move from tools for extenders into tools actually for users and more user-facing interactions with full-site editing and having things unlocked in the interface that previously in 5.8, most users won&#8217;t notice and won&#8217;t interact with. In 5.9, I expect that to be more visible.</p>\n\n\n\n<p>So some key takeaways. I know this is a lot of information. So only what&#8217;s ready from the various milestones will be shipped. This is not an on-off switch, and it won&#8217;t take over your site. The focus right now is on giving tools to extenders first, before user-facing changes. That&#8217;s a big lesson that was learned from the 5.0 merge, where Gutenberg and the core editor was brought into the WordPress experience. This is something that, thankfully, we&#8217;re in a position where because of these interrelated projects, we&#8217;re able to move in a more flexible and adaptable way to release what&#8217;s ready and not anything else.</p>\n\n\n\n<h2 id=\"11-strong-what-is-the-fse-outreach-experiment-program-strong\">What is the FSE Outreach Experiment Program?</h2>\n\n\n\n<p>All right. At this point, let&#8217;s jump into the full-site editing outreach program. As a reminder, this is the program that I actually run, so consider this free rein to ask me whatever question you&#8217;d like, because I think probably too much about this program. But it&#8217;s something I&#8217;m really excited to talk to you about, and I think it&#8217;s a really neat vehicle for both feedback and education about full site editing.</p>\n\n\n\n<p>So let&#8217;s go over some big picture questions, kind of like we did earlier on, and just get the details of the way. So let&#8217;s start. What is it? So essentially, it&#8217;s just a program focused on full-site editing. It&#8217;s in the form of a Slack channel right now. I&#8217;ll go over how to join it in a bit. But it has curated calls for testing, summary posts of the feedback that we get, and various educational opportunities that you can hop in on, mainly in the form of live streams. I&#8217;m running some hallway hangouts, which are basically just Zoom calls. People can come in, and we can talk about full site editing.</p>\n\n\n\n<h3 id=\"12-strong-whats-the-goal-strong\">What&#8217;s the goal</h3>\n\n\n\n<p>What&#8217;s the goal? So the goal is pretty simple, help improve full-site editing experience by gathering feedback from WordPress site builders. While the group originally started solely to be about feedback, there&#8217;s actually this really neat educational component that has come up as the feature has developed and as more people have gotten curious about it. So people can join just to build their own awareness about what&#8217;s happening with full-site editing and kind of just look at a glance or just help amplify the posts that are coming through.</p>\n\n\n\n<h3 id=\"13-strong-why-was-it-started-strong\">Why was it started?</h3>\n\n\n\n<p>Why was it started? So I&#8217;m going to quote Josepha from the kickoff post. During the WordPress 5.0 retrospective, which is when Gutenberg was merged and the core editor was merged, one of the things that came up routinely was the need for better engagement with users. It was generally agreed from all levels and area of contribution that users would be most impacted by Gutenberg, but the users were also the group we had the least channels of communication to. To help get user feedback to WordPress developers a little bit more seamlessly, I&#8217;m going to try and experiment outreach program. So basically, this is a lesson that was learned from the 5.0 release. In order to prevent another situation where people are caught by surprise, this program is in place to help people get excited and on ramped and on boarded onto full-site editing, as well as getting feedback so that we know if a major workflow change is coming into play, we can actually get user feedback to make it a little bit easier.</p>\n\n\n\n<h3 id=\"14-strong-how-to-join-fse-outreach-experiment-strong\">How to Join FSE Outreach Experiment</h3>\n\n\n\n<p>All right. At this point, I bet you&#8217;re just so stoked. You&#8217;re ready to dive in. Awesome. (laughing). All you&#8217;ve got to do is join FSE Outreach Experiment in Make WordPress Slack, and then you&#8217;re all set. You&#8217;ll just get a bunch of annoying pings for me with prompts for how to test, interesting posts related to full site editing, and more. I promise it&#8217;s also not as scary as this dive, which looks absolutely terrifying, but also beautiful.</p>\n\n\n\n<h2 id=\"15-strong-high-level-feedback-from-calls-for-testing-strong\">High-Level Feedback from Calls for Testing</h2>\n\n\n\n<p>So because at this point, we&#8217;re on our fifth call for testing, I want to go over some high-level pieces of feedback that we&#8217;ve actually gotten about the experience so far. Basically, across all the calls for testing, these are repeated themes that have come up. But keep in mind that because there are certain aspects that we actually haven&#8217;t tested, so global styles, for example, the UI isn&#8217;t available really for users, and it&#8217;s not refined for users, so it&#8217;s not something that we&#8217;ve had as a focus part of testing, even though there is a UI that is available. So certain things are left out purely because they aren&#8217;t necessarily ready for testing, but these are the top pieces of feedback. So bear with me.</p>\n\n\n\n<h3 id=\"16-strong-preview-content-strong\">Preview Content</h3>\n\n\n\n<p>Previewing content. Publish a post. You want to go preview it, or you&#8217;re editing a post. You want to go preview the content. The same thing is true with full site editing. This is a big thing that kept coming up. My question is, is this a necessary workflow, or is it a symptom of other problems? Because in general, the site editor should be as WYSIWYG, as what you see is what you get, as possible.</p>\n\n\n\n<p>So if you&#8217;re making a change, it should look exactly the same as the front end of your site, and because it doesn&#8217;t right now, it&#8217;s causing this tension. There actually is a preview site option under discussion, as well as a browse mode option, which basically, if you&#8217;re actually editing your site, it would turn off everything that wouldn&#8217;t actually show up on the front end. So if you only have one page of posts, but you have pagination set up so if you had multiple pages, that would actually go away. So as you can imagine, this is currently up for discussion, but there actually are a couple different pathways to try and address this problem. But it&#8217;s a very important one to address.</p>\n\n\n\n<h3 id=\"17-strong-saving-process-strong\">Saving Process</h3>\n\n\n\n<p>Saving process. I like to say it&#8217;s technically reliable, but not yet delightful. So basically, it&#8217;s left a lot to be desired right now, and it&#8217;s resulted in a fair bit of confusion. There&#8217;s a lot of feature requests and enhancements and bugs that have come up related to saving. This is likely because the multi-entity saving aspect that I demoed earlier is very new for WordPress users. It&#8217;s not something we&#8217;re used to having as part of our workflow. So it&#8217;s something that inherently needs some work on. So whether it was people requesting more granular saving options to show specifically what was being changed to issues with saving for screen readers to confusion around even just what the general parts mean, like what you&#8217;re actually selecting or unselecting, This was definitely a big, big area of feedback.</p>\n\n\n\n<h3 id=\"18-distinction-between-editing-area\">Distinction between editing area.</h3>\n\n\n\n<p>Distinction between editing area. So basically, because you can edit all parts of your site, it&#8217;s hard to know, &#8220;Am I editing the header for all of my site, or am I editing just a specific piece of content on a post?&#8221; This kind of distinction, jumping between different levels of, &#8220;Oh, you&#8217;re changing this. This will change everything&#8221; to &#8220;You&#8217;re just changing this one thing in this one spot&#8221; is pretty tricky. Right now, there&#8217;s not a lot of friction, and there&#8217;s not a lot clarity in the actual experience to show when you&#8217;re actually jumping between those different levels. So this was a big piece that&#8217;s come up, and it&#8217;s something that is an active area of iteration and exploration to kind of get the right amount of friction in place.</p>\n\n\n\n<h3 id=\"19-rethinking-width-and-alignment\">Rethinking Width and Alignment.</h3>\n\n\n\n<p>So rethinking width and alignment. Previously, alignment in full-site editing worked to optimize how traditional things worked, where basically, traditional things provided their own alignment styles. This worked okay for the project up until this point. But recently, work has been shipped to reimagine how this dynamic should work to allow for actually more control over alignments when using the site editor. This should actually help make sure that whether you want something that&#8217;s full width or you want to change the actual width of your content that&#8217;s showing up that it&#8217;ll actually be what you see is what you get. Right now, this is another piece of feedback at a high level that&#8217;s impacted what you see is what you get experience.</p>\n\n\n\n<h3 id=\"20-strong-general-usability-improvements-strong\">General usability improvements.</h3>\n\n\n\n<p>Generally usability improvements. I admit this is totally a catchall, and it covers a ton of stuff, but it&#8217;s actually a very important one to think of, because it&#8217;ll actually move the site editing experience from being just functional to actually delightful, which is really exciting. There&#8217;s a ton of issues that are included in this, including some enhancement requests, bug reports, all that good stuff. One of my favorites to talk about is creating a background image on a template part. So imagine you have a header. You&#8217;re working on it. You&#8217;re super excited, and you&#8217;re almost done. Then you&#8217;re like, &#8220;Oh, do you what would be really cool is if I had mountains in the background. Maybe I&#8217;ll add a cover block in the background and add an image and set the opacity pretty low, but have mountains going in the background of the site.&#8221; That&#8217;s really hard to do.(laughing). You basically would have to delete everything and add the block in and then add everything back. So those are the kinds of experiences that we&#8217;re trying to improve right now.</p>\n\n\n\n<h3 id=\"21-strong-improving-placeholders-strong\">Improving Placeholders.</h3>\n\n\n\n<p>Improving placeholders. So placeholders, especially for some of the newer blocks, are a powerful way to both guide people and a current point of confusion. So you probably saw this with the navigation block earlier, where it had those little grayed boxes. It&#8217;s like, &#8220;How do we explain to people, &#8216;Hey, this is something you have to set up and engage with, but here&#8217;s generally what it will look like and what it will do&#8217;?&#8221;&nbsp;</p>\n\n\n\n<p>The feedback for this mainly came into play with the query block, social icon block, featured image block, and the navigation block. Each currently actually also get users started in different ways. So not only are there different placeholders for different experiences, the actual experience of interacting with the placeholders are all pretty inconsistent right now. So I think in the long run, it seems that users will benefit a bunch from a standardized, consistent way to interact with placeholder content so that it becomes a really familiar interaction when you&#8217;re working with a more powerful block. This especially is true for the query block and navigation block.</p>\n\n\n\n<p>Okay, now that we&#8217;ve covered the milestones, the outreach program, high-level pieces of feedback, I&#8217;m going to quickly run through some key topics that I imagine you&#8217;re going to have questions about. Just because I cover them here does not mean I don&#8217;t want to answer questions, so please don&#8217;t see this as a sign that you can&#8217;t also still ask questions about these topics. This is just what I&#8217;ve been hearing from folks.</p>\n\n\n\n<h2 id=\"22-strong-will-full-site-editing-take-over-my-site-strong\">Will full site editing take over my site?</h2>\n\n\n\n<p>Hopefully by this point, you all can say no in a resounding way. But no, this is not something that&#8217;s going to all of a sudden, on-off switch, you upgrade to 5.8, it takes everything over. Not at all. You very much have to opt into it through using a theme blocking that supports, actually, these features. In time, more pathways are going to be built as well so that when you&#8217;re actually using full-site editing, you&#8217;ll likely be using pieces in all of it. So you could just be using the query block, or you could just be using global styles without it taking over your entire site.</p>\n\n\n\n<h2 id=\"23-strong-what-about-the-block-based-navigation-and-widget-screens-strong\">What about the block-based navigation and widget screens?</h2>\n\n\n\n<p>What&#8217;s the deal there? So in case you missed it, there&#8217;s actually two additional projects that are dedicated to bringing blocks to more areas of the site outside of full site, I think. This include the navigation screens. You can build out menus and the widget screens. You can build out your widget sections, and this is pretty powerful and high-impact work. They are both separate projects that are tangential to full-site editing, but you can think of them as stepping stones, basically. So you could have a theme that is a classic theme, but it uses a block-based widget screen so that people can have the power blocks with their widgets. Essentially, the whole point, like I said, it&#8217;s a stepping stone to get people used to using blocks more places.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n\n\n\n<h2 id=\"24-strong-site-builders-strong\">Site builders</h2>\n\n\n\n<p>I could write a thesis about this, because there&#8217;s so much to talk about here. I imagine I&#8217;m going to get questions about this, but essentially, full-site editing is being built partially so people don&#8217;t get stuck or locked into one site builder or another. It&#8217;s also being built in a way that site builders can actually hook into what&#8217;s being created if they choose to. I&#8217;ve heard from a lot of folks, though, that they expect full-site editing to actually fully replicate their favorite site builder&#8217;s functionality, and I&#8217;m here to say that while the goals between full-site editing and site builders are pretty similar in terms of empowering users and giving better tools to customize a site, the difference is that we&#8217;re building for 40% of the Internet, and we&#8217;re building even for site builders, where site builders have a much more targeted approach.</p>\n\n\n\n<p>In the future, I do think there will always be room for specific takes of how to have an ideal site editing experience, whether that&#8217;s geared to a specific group, like a marketing style approach, or if you want to have things locked down or if you want to have things opened up. But generally speaking, full-site editing is meant to actually expand the way WordPress as a whole uses blocks, so don&#8217;t expect it to fully replicate any sort of site builder, your favorite site builder, essentially.</p>\n\n\n\n<h2 id=\"25-strong-how-is-this-going-to-impact-themes-strong\">How is this going to impact themes?</h2>\n\n\n\n<p>How is this going to impact themes? So in the long run, this should actually make theme development much easier. I think Marcus&#8217;s demonstration later will show that, and much simpler, especially with the design tools that will be essentially ready at your fingertips to tap into. Ideally, because of what&#8217;s being released, it should allow theme authors to focus less on coding and functions and more on design aesthetics, integrating block patterns, and all that good stuff. But because one of the key things I wanted to really drive home in this section, though, is that because full-site editing requires a block-based theme or a theme with certain functionality enabled, this makes theming extremely important to get right. So I&#8217;ve heard people say like, &#8220;Oh, themes are a thing of the past.&#8221; It&#8217;s very much not true. I&#8217;d actually argue the opposite, that theme is almost key to this experience, to having it be delightful and having it makes sense.</p>\n\n\n\n<h2 id=\"26-strong-what-pathways-are-going-to-be-created-strong\">What pathways are going to be created?</h2>\n\n\n\n<p>I know I&#8217;ve talked a lot about pathways this entire time, but it is the entire focus of the final month milestone for full-site editing. So expect a lot of pathways. For now, this includes everything from having a classic theme that can take advantage of global styles to template editing or a block-based widget screen. This also includes things like allowing certain full-site editing, really, blocks to be available for users, regardless of if they&#8217;re using a classic theme or a block theme or enabling the ability to edit block templates directly, kind of like I showed in the demo earlier. So there&#8217;s going to be a ton of options here, and I&#8217;m actually really excited to see what happens once 5.8 kind of sparks the creativity of the community, because I imagine both that people will create their own pathways and start experimenting, and we&#8217;ll also get a very clear sense of, &#8220;Hey, I actually really need X, Y, and Z pathway.&#8221; We&#8217;ll get a sense of demand from the community of core, which is super exciting to have.</p>\n\n\n\n<h2 id=\"27-strong-whats-the-best-way-to-prepare-nbsp-strong\">What&#8217;s the best way to prepare?&nbsp;</h2>\n\n\n\n<p>So this depends on who you are. (laughing). So depending on whoever you are, at a high level, this is what I recommend. Join the FSE Outreach Program. I know this is the thing that I run. I&#8217;m very biased. But seriously, join it. I think it&#8217;s really, really helpful to get a sense both of feedback, what&#8217;s being currently iterated on, and just general education opportunities. If you&#8217;re a theme author, I really recommend checking out the theme experiments repo and joining the block-based theme meetings to learn about the latest and greatest, because lots of good information is shared there. In general, too, it&#8217;s often also helpful to join the weekly core editor meetings, because there&#8217;s regular updates about the projects and PRs people working on. Finally, pay attention to upcoming content on Learn WordPress, because I think there&#8217;s going to be a ton of stuff coming up about full-site editing, depending upon what&#8217;s scoped for 5.8 and 5.9, including building a block-based theme, for example. That will really help, I think, everyone level up.</p>\n\n\n\n<h2 id=\"28-strong-stay-connected-with-anne-mc-carthy-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-strong\">Stay connected with Anne McCarthy</h2>\n\n\n\n<p>All right. So we&#8217;re at the very end. At this point, if you want to stay connected with me or you have follow-up questions after this talk, I very much welcome them. You can find me on WordPress or on Slack @annezazu, or you can reach me at my site, nomad.blog. I will also try and drop my automatic email address separately. I just won&#8217;t on a live presentation, in case you want to follow up directly via email. I&#8217;m not on Twitter. I&#8217;m not on Facebook. I&#8217;m on and off of Instagram. So please don&#8217;t try to contact me those ways.</p>\n\n\n\n<p>Finally, I just want to say thanks so much for your time. Let&#8217;s hear your questions at this point. I&#8217;m really excited to hear what you all are thinking and curious about. I do want to say I don&#8217;t know everything, but I can find anything, and I&#8217;ve talked with David about how he can follow up after this presentation to get you all information and answers that you all want to questions that I might not be able to answer. So at this point, I&#8217;m going to pass it off to live and current Anne and give a high-five from past Anne.</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, 16 Apr 2021 18:21:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Enō: ‘Probably This Is the Best Blogging Theme Ever’\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115149\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"https://wptavern.com/eno-probably-this-is-the-best-blogging-theme-ever?utm_source=rss&utm_medium=rss&utm_campaign=eno-probably-this-is-the-best-blogging-theme-ever\";s: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:4460:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Sometimes a theme&rsquo;s description is so moving that one must install, activate, and test the project. I often rail against the obviously keyword-stuffed text in the free WordPress theme directory. But, I am pleasantly surprised from time to time.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>En&#333; is an elegant, modern and functional WordPress theme. Probably this is the best blogging theme ever. Just see the demo at&hellip;It supports Gutenberg block editor and has a lot of Customizer options&hellip;</p></blockquote>\n\n\n\n<p>Thus began my journey into <a href=\"https://webminimalism.com/blog/eno-wordpress-theme/\">En&#333;</a>, an upcoming theme by Ivan Fonin. I could have been partially a language-barrier thing. Or, the author could have just been having a bit of fun. Nevertheless, it was the sort of description that stood out enough to pull into my test environment. Any blogging theme claiming the title of &ldquo;the best&rdquo; was at least worth a look.</p>\n\n\n\n<p>What I found was a well-designed theme that focused on some of those timeless elements, such as generous use of whitespace and sound typography. I would not go so far as crowning it the best ever created, but it will undoubtedly be the perfect fit for many bloggers in the future.</p>\n\n\n\n<p>Currently, the theme is awaiting a review before it lands in the official WordPress theme directory. However, those who want to try it out early can snag a copy of the ZIP file from its <a href=\"https://themes.trac.wordpress.org/ticket/97585\">Trac ticket</a>.</p>\n\n\n\n<p>En&#333; tackles the intricacies of block editor design like a pro. In areas where so many &ldquo;block-ready&rdquo; themes fail to live up to expectations, it is a textbook example of working alongside the block system.</p>\n\n\n\n<p>Where it falls short is that it does not go beyond nailing down the basics of block design. The theme bundles no patterns, which would allow users to quickly drop in more advanced layouts. It also does not include block styles or even a custom color palette. There are no unique elements in the design where the author stamps his own signature in bold. It is almost formulaic, but that is not necessarily a bad thing. Formula can feel good. It can be comforting when you need something that simply gets out of the way and allows your content to shine.</p>\n\n\n\n<p>While Fonin bills the project as a blogging theme, it stands out as a solid option for photographers. The open-canvas layout leaves ample room for large images and galleries, and the <a href=\"https://demo.webminimalism.com/eno/\">theme&rsquo;s demo</a> is filled with examples.</p>\n\n\n\n<img />Gallery examples from the  En&#333; theme.\n\n\n\n<p>What would make this theme even better would be a few image and gallery styles, allowing end-users to spruce up their blocks a little more.</p>\n\n\n\n<p>As much as I like the theme, it does tick one of the boxes from my most-irritating-things-that-themes-do checklist. It outputs the featured image on single post views above the post content. This creates the dreaded double-image issue when a user also uses the same image in the post itself. The easy fix for this is to provide a theme option for not showing the featured image on single posts.</p>\n\n\n\n<img />No customizer option to disable post featured image on single views.\n\n\n\n<p>It is a surprise that the theme does not have this option because it allows users to enable or disable nearly everything possible outside of the post content. It has three different areas where metadata can be shown: before the post title, after the title, and after the content. Users can pick and choose what appears where via a series of checkboxes. The approach is convoluted at best and is a good representation of why we need the site editor. This is not so much the fault of the theme as it is a limitation of the customizer. Instead of ticking and unticking boxes, users could simply move blocks around to their desired location.</p>\n\n\n\n<p>The comments are broken in the theme at the moment. Each comment&rsquo;s text is outputting a simple comma instead of the content. I am sure this will come up in the theme review and be addressed before it goes live.</p>\n\n\n\n<p>For users looking for a minimalist, block-ready theme, this will be a solid option once it makes it through the review process. I look forward to the day when themes like En&#333; are the baseline when designing for the block system.</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, 16 Apr 2021 17:20:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:66:\"WPTavern: Full Site Editing Is Partly a ‘Go’ for WordPress 5.8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115193\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:165:\"https://wptavern.com/full-site-editing-is-partly-a-go-for-wordpress-5-8?utm_source=rss&utm_medium=rss&utm_campaign=full-site-editing-is-partly-a-go-for-wordpress-5-8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6930:\"<p class=\"has-drop-cap\">Today, Josepha Haden Chomphosy <a href=\"https://make.wordpress.org/core/2021/04/15/full-site-editing-go-no-go-april-14-2021/\">announced the results</a> of yesterday&rsquo;s &ldquo;go/no-go&rdquo; demo and decision on <a href=\"https://wptavern.com/will-full-site-editing-land-in-wordpress-5-8-a-decision-is-forthcoming\">whether Full Site Editing (FSE) would land in WordPress 5.8</a>. The site editor and global styles are not landing in the next release. However, several other features should launch and allow users to build their sites with blocks in new ways.</p>\n\n\n\n<p>The following people attended the demo:</p>\n\n\n\n<ul><li>Mat&iacute;as Ventura &ndash; Demo Host and Gutenberg Project Lead</li><li>Matt Mullenweg &ndash; WordPress Project Lead</li><li>Helen Hou-Sand&iacute; &ndash; Lead Developer</li><li>Josepha Haden Chomphosy &ndash; Executive Director</li><li>H&eacute;ctor Prieto &ndash; Technical Project Manager</li><li>Chlo&eacute; Bringmann &ndash; Assisting with administrative and operational logistics</li></ul>\n\n\n\n<p>Ventura walked the group through the various FSE features that could be ready for WordPress 5.8, taking questions and discussing along the way. There was also a discussion afterward that focused on ideas beyond the next release.</p>\n\n\n\n<p>The following FSE-related features are expected to ship:</p>\n\n\n\n<ul><li>Improvements from Gutenberg 9.9+.</li><li>New theme-related blocks like Query, Site Logo, Navigation, and more.</li><li><code>theme.json</code> integration, which allows themes to define block defaults and settings.</li><li>Template-editing mode for the block editor.</li><li>Block-based widgets screen and customizer integration.</li><li>New block design tools, such as duotone (SVG filters for images), layout controls, padding, and more.</li></ul>\n\n\n\n<p>&ldquo;Not all of the above are currently ready but there&rsquo;s some level of confidence that they can be by the time of 5.8,&rdquo; noted Haden Chomphosy in the post.</p>\n\n\n\n<p>This list feels like a solid compromise between launching some of the more polished FSE features and trying to force in those that are probably out of reach for a July 2021 release. The features also provide current users access to new block tools without activating a block-based theme.</p>\n\n\n\n<p>The group focused on the Query block for much of the early discussion. The Gutenberg development team will likely change the block&rsquo;s user-facing name to something less confusing. It also needs a bit more polishing to make things more user-friendly.  I am interested in seeing how theme authors use this in conjunction with patterns once this launches.</p>\n\n\n\n<p>One other feature that users should look forward to is the <a href=\"https://wptavern.com/first-look-at-initial-designs-for-wordpress-block-pattern-directory\">pattern directory</a>. While it is not ready for integration into the WordPress admin UI, it does not need to be. Users will be able to copy patterns from the directory and paste them directly into their editor. In time, it should become a part of the built-in experience.</p>\n\n\n\n<p>The group seems to have made a good call on which features to include. It is easy to want to push forward and get everything into the hands of users. It can be tougher to pull back and compromise.</p>\n\n\n\n<p>Full video of the demo:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>I had two takeaways that stood out to me more than anything in the meeting.</p>\n\n\n\n<h2>Takeaway #1: Page Template Editor</h2>\n\n\n\n<p class=\"has-drop-cap\">In WordPress 5.8, users should gain access to the <a href=\"https://wptavern.com/first-round-of-the-fse-outreach-program-concludes-identifies-template-editing-mode-problems\">template editor</a>. On the page-editing screen, it allows users to switch out of content-editing mode. From there, they can work on the overall template. Essentially, for this release, it would serve as a landing page builder.</p>\n\n\n\n<p>This is a sort of middle ground between just the block editor and the eventual site editor. I like this route because it does not overwhelm end-users with a complete site-editing experience at once. It is a helping hand, a transition from the current phase to the next, allowing users to familiarize themselves with more advanced tools.</p>\n\n\n\n<p>The template editor will work for all users too. They will not be required to run a block-based theme to access it. Because each template would be a one-off use case, WordPress can serve this up without theme authors opting into it.</p>\n\n\n\n<p>Many block-ready themes have already been including an &ldquo;open canvas&rdquo; type of template. This would remove the need for those unless also including it for third-party builders. It would also solve the portability issue when users switch from a theme that bundles the template and one that does not.</p>\n\n\n\n<h2>Takeaway #2: Many Block-Based Themes</h2>\n\n\n\n<p class=\"has-drop-cap\">At the end of the discussion, the group was more or less spitballing some ideas beyond version 5.8. In particular, Hou-Sand&iacute; shared a vision of what theme development for the official directory could look like in the era of FSE.</p>\n\n\n\n<p>&ldquo;Because the full site editing, like from a user-facing point of view, is not about page building all the time,&rdquo; she said. &ldquo;It&rsquo;s about tweaking what&rsquo;s there. Yeah. So I feel like the correct thing for core to do in terms of bundled themes is actually a bunch of small bundled themes.&rdquo;</p>\n\n\n\n<p>I have previously written about how work on <a href=\"https://wptavern.com/work-on-the-twenty-twenty-two-default-wordpress-theme-should-already-be-underway\">Twenty Twenty-Two should already be underway</a> instead of waiting until the last moment to piece a new default theme together for the end-of-the-year launch. The yearly default theme system has served the community well for over a decade now. I am already warming to the idea of turning it on its head and forging a new path.</p>\n\n\n\n<p>With FSE, developers do not necessarily have to follow all of the rules of traditional themes. Themes like Kjell Reigstad&rsquo;s <a href=\"https://wptavern.com/carrd-like-theme-experiment-provides-a-glimpse-into-the-future-of-theming\">Carrd-like, two-column landing page theme</a> would be well-suited to such an experiment. Smaller, more experimental projects like this could replace the old Twenty* theme system with something new or even complement it.</p>\n\n\n\n<p>Hou-Sand&iacute; also threw out a few ideas around building block-based themes via a library of CC0 images, the patterns directory, and copying/pasting things from WordPress.org. She likened it to the CSS Zen Garden era. It could even open the possibility of bypassing the theme review process since everything would be pre-vetted.</p>\n\n\n\n<p>But, these are thoughts for tomorrow. For now, we are at least getting some initial FSE components.</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, 15 Apr 2021 21:54: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s: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:77:\"WPTavern: Zerodium Temporarily Triples Payout to $300K for WordPress Exploits\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=115080\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"https://wptavern.com/zerodium-temporarily-triples-payout-to-300k-for-wordpress-exploits?utm_source=rss&utm_medium=rss&utm_campaign=zerodium-temporarily-triples-payout-to-300k-for-wordpress-exploits\";s: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:4216:\"<p><a href=\"https://zerodium.com/\">Zerodium</a>, one of the most well-known security vulnerability brokers, announced that it is tripling payouts for remote code execution exploits on default WordPress installations. Payouts are typically $100K but have been temporarily increased to $300K. </p>\n\n\n\n<p>The company focuses on acquiring original and previously unreported zero-day research. It pays researchers for high-risk vulnerabilities and fully functional exploits, with the highest rewards at $2.5M for &lsquo;full chain, zero-click, with persistence&rsquo; Android exploits. This price tag was increased from $200K in September 2019, suggesting Android exploits have become more difficult to find or that demand for them has increased significantly.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">We\'re temporarily increasing our payouts for WordPress RCEs to $300,000 per exploit (usually $100K). <br /><br />The exploit must work with latest WordPress, default install, no third-party plugins, no auth, no user interaction!<br /><br />If you have this gem, contact us: <a href=\"https://t.co/PBuS1nnpED\">https://t.co/PBuS1nnpED</a></p>&mdash; Zerodium (@Zerodium) <a href=\"https://twitter.com/Zerodium/status/1380489573009031170?ref_src=twsrc%5Etfw\">April 9, 2021</a></blockquote>\n</div>\n\n\n\n<p>Exploit resellers operate within a sort of grey area of security research. As a standard practice, security researchers are encouraged to report vulnerabilities to the original developer of the software, not an intermediary that may pass it along to a party that may not use the information for good. The appeal of these companies is that they pay more than most organizations, hence the tagline: &ldquo;<em>We pay BIG bounties, not bug bounties.&rdquo;</em></p>\n\n\n\n<p>WordPress has an account with <a href=\"https://hackerone.com/wordpress/\">Hackerone</a> to pay security researchers for vulnerabilities but <a href=\"https://hackerone.com/wordpress/hacktivity?type=team\">payouts</a> are much smaller in comparison to what exploit brokers pay. This makes it a tough choice for security researchers who do this for a living. Professional zero-day hunters are looking for the highest payouts for the vulnerabilities they find, which can sometimes take months or longer.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Zerodium does not reveal who its clients are or what their purpose is for buying the the vulnerabilities. The best case scenario would be a government entity wanting to secure its own systems. Even then one cannot guarantee that they use the exploit ethically or that they don&rsquo;t inadvertently leak the exploits where they could be used maliciously by others. </p>\n\n\n\n<p>Zerodium did not elaborate on why it has increased payouts for WordPress exploits to $300K. <a href=\"https://blog.wpscan.com/2021/04/10/zerodium-wordpress-exploit.html\">WPScan</a> speculates that the company may suddenly have a greater demand for WordPress RCE exploits, combined with WordPress becoming more secure:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>This could indicate that WordPress is becoming more secure and that it is getting harder to find the critical security issues that buyers want. On the other hand, we must also assume that these types of exploits already exist and are already being actively sold on Zerodium and other similar platforms.</p><p>We could also conclude that if a government is going to pay more than $300,000 on a WordPress RCE exploit, that they intend to use it. World governments may even barter over the exploits so that the seller, in this case, Zerodium, gets the best price.</p></blockquote>\n\n\n\n<p>WPScan also emphasized that with WordPress having such a large presence on the web, an exploit against core with those particular characteristics &ldquo;would be devastating to the web as a whole if it landed in the wrong hands.&rdquo;</p>\n\n\n\n<p>&ldquo;Zerodium increasing their prices may indicate that it is becoming harder to find these critical issues in WordPress Core,&rdquo; WPScan founder and CEO Ryan Dewhurst said. &ldquo;That, at least, should be good news for WordPress and the web as a whole.&rdquo;</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, 15 Apr 2021 18:11:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:68:\"WordPress.org blog: WordPress 5.7.1 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=10144\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2021/04/wordpress-5-7-1-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8387:\"<p>WordPress 5.7.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">26 bug fixes</a> in addition to two security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 4.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.7.1 is a short-cycle security and maintenance release. The next major release will be version 5.8.</p>\n\n\n\n<p>You can download WordPress 5.7.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Two security issues affect WordPress versions between 4.7 and 5.7. If you haven’t yet updated to 5.7, all WordPress versions since 4.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Thank you <a href=\"https://www.sonarsource.com/\">SonarSource</a> for reporting an XXE vulnerability within the media library affecting PHP 8.</li><li>Thanks <a href=\"https://mikaelkorpela.fi/\">Mikael Korpela</a> for reporting a data exposure vulnerability within the REST API.</li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/zieladam/\">Adam Zielinski</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> and the WordPress security team for their work on these issues.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.7.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-7-1/\">version 5.7.1 HelpHub documentation page</a>.</p>\n\n\n\n<h2>Thanks and props!</h2>\n\n\n\n<p>The 5.7.1 release was led by <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> and <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>.</p>\n\n\n\n<p>In addition to the security researchers and release squad members mentioned above, thank you to everyone who helped make WordPress 5.7.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/ninetyninew/\">99w</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/annalamprou/\">annalamprou</a>, <a href=\"https://profiles.wordpress.org/anotherdave/\">anotherdave</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/brechtvds/\">Brecht</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dkoo/\">dkoo</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dragongate/\">dragongate</a>, <a href=\"https://profiles.wordpress.org/eatsleepcode/\">eatsleepcode</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/kebbet/\">Erik</a>, <a href=\"https://profiles.wordpress.org/fabianpimminger/\">Fabian Pimminger</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/gab81/\">gab81</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/geoffrey1963/\">Geoffrey</a>, <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzim/\">grzim</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jaymanpandya/\">Jayman Pandya</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a>, <a href=\"https://profiles.wordpress.org/jonkastonka/\">Johan Jonk Stenström</a>, <a href=\"https://profiles.wordpress.org/goaroundagain/\">Johannes Kinast</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/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/joseeyoast/\">Josee Wouters</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/k3nsai/\">k3nsai</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/gwwar/\">Kerry Liu</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">Mikhail Kobzarev</a>, <a href=\"https://profiles.wordpress.org/mmuyskens/\">mmuyskens</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nicegamer7/\">nicegamer7</a>, <a href=\"https://profiles.wordpress.org/otshelnik-fm/\">Otshelnik-Fm</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/palmiak/\">palmiak</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pwallner/\">pwallner</a>, <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rinatkhaziev/\">Rinat Khaziev</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rogertheriault/\">Roger Theriault</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/yakimun/\">Sergey Yakimov</a>, <a href=\"https://profiles.wordpress.org/sirstuey/\">SirStuey</a>, <a href=\"https://profiles.wordpress.org/stefanjoebstl/\">stefanjoebstl</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a>, <a href=\"https://profiles.wordpress.org/terriann/\">Terri Ann</a>, <a href=\"https://profiles.wordpress.org/tigertech/\">tigertech</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, and <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Apr 2021 03:05: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:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 13 May 2021 10:14:15 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 13 May 2021 10:00:08 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20201016215008\";}','no'),(1865,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1620944056','no'),(1866,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1620900856','no'),(1867,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1620944056','no'),(1868,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/05/wordpress-5-7-2-security-release/\'>WordPress 5.7.2 Security Release</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/05/welcome-to-openverse/\'>Welcome to Openverse</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2021/05/wordpress-5-7-2-security-release/\'>WordPress.org blog: WordPress 5.7.2 Security Release</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/genesis-framework-to-become-free-studiopress-announces-changes?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=genesis-framework-to-become-free-studiopress-announces-changes\'>WPTavern: Genesis Framework To Become Free, StudioPress Announces Changes</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/universal-wordpress-themes-virtual-hallway-hangout-planned-for-may-14?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=universal-wordpress-themes-virtual-hallway-hangout-planned-for-may-14\'>WPTavern: ‘Universal’ WordPress Themes Virtual Hallway Hangout Planned for May 14</a></li></ul></div>','no'),(1878,'_transient_timeout_wpseo-statistics-totals','1621004254','no'),(1879,'_transient_wpseo-statistics-totals','a:1:{i:1;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts <strong>without</strong> a focus keyphrase\";s:5:\"count\";i:6;s:4:\"link\";s:136:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-admin/edit.php?post_status=publish&#038;post_type=post&#038;seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}}','no'),(1880,'_site_transient_timeout_community-events-b2419cb3126f4d87f734ae6a89498576','1620961055','no'),(1881,'_site_transient_community-events-b2419cb3126f4d87f734ae6a89498576','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"87.116.180.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:64:\"Demo + Discussion group: Creating and Registering Block Patterns\";s:3:\"url\";s:68:\"https://www.meetup.com/learn-wordpress-discussions/events/277669527/\";s:6:\"meetup\";s:27:\"Learn WordPress Discussions\";s:10:\"meetup_url\";s:51:\"https://www.meetup.com/learn-wordpress-discussions/\";s:4:\"date\";s:19:\"2021-05-14 11:00:00\";s:8:\"end_date\";s:19:\"2021-05-14 12:00:00\";s:20:\"start_unix_timestamp\";i:1621015200;s:18:\"end_unix_timestamp\";i:1621018800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.7799987792970028976924368180334568023681640625;s:9:\"longitude\";d:-122.419998168950002082056016661226749420166015625;}}i:1;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:30:\"WordCamp Northeast Ohio Region\";s:3:\"url\";s:30:\"https://neo.wordcamp.org/2021/\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2021-05-21 00:00:00\";s:8:\"end_date\";s:19:\"2021-05-23 00:00:00\";s:20:\"start_unix_timestamp\";i:1621569600;s:18:\"end_unix_timestamp\";i:1621742400;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.26178730000000172140062204562127590179443359375;s:9:\"longitude\";d:-81.16372450000000071668182499706745147705078125;}}}}','no');
/*!40000 ALTER TABLE `wpgb_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_postmeta`
--

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

--
-- Dumping data for table `wpgb_postmeta`
--

LOCK TABLES `wpgb_postmeta` WRITE;
/*!40000 ALTER TABLE `wpgb_postmeta` DISABLE KEYS */;
INSERT INTO `wpgb_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(4,5,'_customize_changeset_uuid','ce058a28-71f3-4a44-a156-1dc6cc6a9d41'),(6,6,'_customize_changeset_uuid','ce058a28-71f3-4a44-a156-1dc6cc6a9d41'),(10,8,'_customize_changeset_uuid','ce058a28-71f3-4a44-a156-1dc6cc6a9d41'),(12,14,'_menu_item_type','custom'),(13,14,'_menu_item_menu_item_parent','0'),(14,14,'_menu_item_object_id','14'),(15,14,'_menu_item_object','custom'),(16,14,'_menu_item_target',''),(17,14,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(18,14,'_menu_item_xfn',''),(19,14,'_menu_item_url','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/'),(20,15,'_menu_item_type','post_type'),(21,15,'_menu_item_menu_item_parent','0'),(22,15,'_menu_item_object_id','6'),(23,15,'_menu_item_object','page'),(24,15,'_menu_item_target',''),(25,15,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(26,15,'_menu_item_xfn',''),(27,15,'_menu_item_url',''),(28,16,'_menu_item_type','post_type'),(29,16,'_menu_item_menu_item_parent','0'),(30,16,'_menu_item_object_id','8'),(31,16,'_menu_item_object','page'),(32,16,'_menu_item_target',''),(33,16,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(34,16,'_menu_item_xfn',''),(35,16,'_menu_item_url',''),(44,18,'_menu_item_type','custom'),(45,18,'_menu_item_menu_item_parent','0'),(46,18,'_menu_item_object_id','18'),(47,18,'_menu_item_object','custom'),(48,18,'_menu_item_target',''),(49,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50,18,'_menu_item_xfn',''),(51,18,'_menu_item_url','https://www.facebook.com/wordpress'),(52,19,'_menu_item_type','custom'),(53,19,'_menu_item_menu_item_parent','0'),(54,19,'_menu_item_object_id','19'),(55,19,'_menu_item_object','custom'),(56,19,'_menu_item_target',''),(57,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58,19,'_menu_item_xfn',''),(59,19,'_menu_item_url','https://twitter.com/wordpress'),(60,20,'_menu_item_type','custom'),(61,20,'_menu_item_menu_item_parent','0'),(62,20,'_menu_item_object_id','20'),(63,20,'_menu_item_object','custom'),(64,20,'_menu_item_target',''),(65,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66,20,'_menu_item_xfn',''),(67,20,'_menu_item_url','https://www.instagram.com/explore/tags/wordcamp/'),(68,21,'_menu_item_type','custom'),(69,21,'_menu_item_menu_item_parent','0'),(70,21,'_menu_item_object_id','21'),(71,21,'_menu_item_object','custom'),(72,21,'_menu_item_target',''),(73,21,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(74,21,'_menu_item_xfn',''),(75,21,'_menu_item_url','mailto:wordpress@example.com'),(80,23,'_form','<label> Your name\n    [text* your-name] </label>\n\n<label> Your email\n    [email* your-email] </label>\n\n<label> Subject\n    [text* your-subject] </label>\n\n<label> Your message (optional)\n    [textarea your-message] </label>\n\n[submit \"Submit\"]'),(81,23,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:73:\"[_site_title] <wordpress@thirsklodgebarnsstaging.partridgecreative.co.uk>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"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 [_site_title] ([_site_url])\";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;}'),(82,23,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:73:\"[_site_title] <wordpress@thirsklodgebarnsstaging.partridgecreative.co.uk>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(83,23,'_messages','a:22:{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: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: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: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: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.\";}'),(84,23,'_additional_settings',''),(85,23,'_locale','en_US'),(86,24,'_wp_attached_file','2017/12/logo.png'),(87,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:164;s:6:\"height\";i:36;s:4:\"file\";s:16:\"2017/12/logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x36.png\";s:5:\"width\";i:150;s:6:\"height\";i:36;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:{}}}'),(88,24,'_wp_attachment_image_alt','k'),(89,25,'_wp_attached_file','2017/12/home-image-1.jpg'),(90,25,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2017/12/home-image-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-1-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-1-745x1024.jpg\";s:5:\"width\";i:745;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"home-image-1-768x1056.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:24:\"home-image-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:25:\"home-image-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-1-700x963.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(91,25,'_wp_attachment_image_alt','h'),(92,26,'_wp_attached_file','2017/12/home-image-2.jpg'),(93,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1100;s:4:\"file\";s:24:\"2017/12/home-image-2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-2-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-2-745x1024.jpg\";s:5:\"width\";i:745;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"home-image-2-768x1056.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-2-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-2-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-2-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-2-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:24:\"home-image-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:25:\"home-image-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-2-700x963.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-2-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(94,26,'_wp_attachment_image_alt','g'),(95,27,'_wp_attached_file','2017/12/home-slider-image-3.png'),(96,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:911;s:4:\"file\";s:31:\"2017/12/home-slider-image-3.png\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-243x300.png\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-570x570.png\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-600x800.png\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-739x600.png\";s:5:\"width\";i:739;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-739x500.png\";s:5:\"width\";i:739;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-500x911.png\";s:5:\"width\";i:500;s:6:\"height\";i:911;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-700x863.png\";s:5:\"width\";i:700;s:6:\"height\";i:863;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:31:\"home-slider-image-3-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(97,27,'_wp_attachment_image_alt','r'),(98,28,'_wp_attached_file','2017/12/home-slider-image-1.png'),(99,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2017/12/home-slider-image-1.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-280x300.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-768x824.png\";s:5:\"width\";i:768;s:6:\"height\";i:824;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-570x570.png\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-600x800.png\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-839x500.png\";s:5:\"width\";i:839;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-500x900.png\";s:5:\"width\";i:500;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-700x751.png\";s:5:\"width\";i:700;s:6:\"height\";i:751;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(100,39,'_wp_attached_file','2017/12/team-image-1.jpg'),(101,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1003;s:4:\"file\";s:24:\"2017/12/team-image-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"team-image-1-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"team-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"team-image-1-768x963.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"team-image-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"team-image-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"team-image-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"team-image-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"team-image-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"team-image-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"team-image-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:24:\"team-image-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:25:\"team-image-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"team-image-1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"team-image-1-700x878.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"team-image-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(102,143,'_wp_attached_file','2017/12/about-us-video-box-image.jpg'),(103,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1029;s:4:\"file\";s:36:\"2017/12/about-us-video-box-image.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"about-us-video-box-image-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:37:\"about-us-video-box-image-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:37:\"about-us-video-box-image-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-700x900.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:36:\"about-us-video-box-image-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(104,86,'_wp_attached_file','2017/12/pin.png'),(105,86,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:34;s:6:\"height\";i:55;s:4:\"file\";s:15:\"2017/12/pin.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(106,86,'_wp_attachment_image_alt','j'),(107,194,'_wp_attached_file','2017/12/gallery-image-4.jpg'),(108,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:987;s:4:\"file\";s:27:\"2017/12/gallery-image-4.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-768x948.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-500x987.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-700x864.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"gallery-image-4-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(109,222,'_wp_attached_file','2017/12/history-image-2.jpg'),(110,222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1045;s:4:\"file\";s:27:\"2017/12/history-image-2.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"history-image-2-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"history-image-2-784x1024.jpg\";s:5:\"width\";i:784;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"history-image-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"history-image-2-768x1003.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1003;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"history-image-2-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"history-image-2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"history-image-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"history-image-2-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"history-image-2-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"history-image-2-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"history-image-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"history-image-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:28:\"history-image-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:28:\"history-image-2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"history-image-2-700x914.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"history-image-2-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(111,117,'_wp_attached_file','2017/12/home-image-4.jpg'),(112,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:660;s:4:\"file\";s:24:\"2017/12/home-image-4.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-4-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-4-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-image-4-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-4-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-4-600x660.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-4-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-4-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-4-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-4-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"home-image-4-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"home-image-4-500x660.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-4-1000x660.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-4-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-4-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(113,194,'_wp_attachment_image_alt','f'),(114,39,'_wp_attachment_image_alt','h'),(115,195,'_wp_attached_file','2017/12/gallery-image-5.jpg'),(116,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:987;s:4:\"file\";s:27:\"2017/12/gallery-image-5.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-768x948.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-500x987.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-700x864.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"gallery-image-5-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(117,46,'_wp_attached_file','2017/12/team-image-2.jpg'),(118,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1003;s:4:\"file\";s:24:\"2017/12/team-image-2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"team-image-2-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"team-image-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"team-image-2-768x963.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"team-image-2-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"team-image-2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"team-image-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"team-image-2-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"team-image-2-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"team-image-2-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"team-image-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:24:\"team-image-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:25:\"team-image-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"team-image-2-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"team-image-2-700x878.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"team-image-2-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(119,117,'_wp_attachment_image_alt','o'),(120,118,'_wp_attached_file','2017/12/home-image-5.jpg'),(121,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:660;s:4:\"file\";s:24:\"2017/12/home-image-5.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-5-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-5-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-image-5-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-5-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-5-600x660.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-5-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-5-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-5-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-5-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-5-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"home-image-5-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"home-image-5-500x660.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-5-1000x660.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-5-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-5-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(122,143,'_wp_attachment_image_alt','j'),(123,222,'_wp_attachment_image_alt','h'),(124,191,'_wp_attached_file','2017/12/gallery-image-1.jpg'),(125,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:987;s:4:\"file\";s:27:\"2017/12/gallery-image-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-768x948.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-500x987.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-700x864.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"gallery-image-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(126,259,'_wp_attached_file','2017/12/home-image-8.jpg'),(127,259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:660;s:4:\"file\";s:24:\"2017/12/home-image-8.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-8-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-8-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-image-8-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-8-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-8-600x660.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-8-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-8-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-8-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-8-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-8-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"home-image-8-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"home-image-8-500x660.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-8-1000x660.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-8-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-8-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(128,195,'_wp_attachment_image_alt','f'),(129,196,'_wp_attached_file','2017/12/gallery-image-6.jpg'),(130,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:987;s:4:\"file\";s:27:\"2017/12/gallery-image-6.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-768x948.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-500x987.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-700x864.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"gallery-image-6-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(131,46,'_wp_attachment_image_alt','h'),(132,47,'_wp_attached_file','2017/12/team-image-3.jpg'),(133,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1003;s:4:\"file\";s:24:\"2017/12/team-image-3.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"team-image-3-239x300.jpg\";s:5:\"width\";i:239;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"team-image-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"team-image-3-768x963.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"team-image-3-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"team-image-3-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"team-image-3-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"team-image-3-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"team-image-3-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"team-image-3-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"team-image-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:24:\"team-image-3-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:25:\"team-image-3-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"team-image-3-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"team-image-3-700x878.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"team-image-3-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(134,118,'_wp_attachment_image_alt','o'),(135,191,'_wp_attachment_image_alt','f'),(136,119,'_wp_attached_file','2017/12/home-image-6.jpg'),(137,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:660;s:4:\"file\";s:24:\"2017/12/home-image-6.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-6-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-6-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-image-6-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-6-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-6-600x660.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-6-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-6-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-6-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-6-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-6-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"home-image-6-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"home-image-6-500x660.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-6-1000x660.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-6-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-6-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(138,192,'_wp_attached_file','2017/12/gallery-image-2.jpg'),(139,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:987;s:4:\"file\";s:27:\"2017/12/gallery-image-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-768x948.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-500x987.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-700x864.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"gallery-image-2-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(140,259,'_wp_attachment_image_alt','f'),(141,260,'_wp_attached_file','2017/12/home-image-9.jpg'),(142,260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:660;s:4:\"file\";s:24:\"2017/12/home-image-9.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-9-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"home-image-9-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-image-9-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-9-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-9-600x660.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-9-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-9-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-9-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-9-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-9-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"home-image-9-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"home-image-9-500x660.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"home-image-9-1000x660.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-9-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-9-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(143,28,'_wp_attachment_image_alt','v'),(144,196,'_wp_attachment_image_alt','f'),(145,261,'_wp_attached_file','2017/12/home-slider-image-2.png'),(146,261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:894;s:4:\"file\";s:31:\"2017/12/home-slider-image-2.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-203x300.png\";s:5:\"width\";i:203;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-570x570.png\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-600x800.png\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-605x600.png\";s:5:\"width\";i:605;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-605x500.png\";s:5:\"width\";i:605;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-500x894.png\";s:5:\"width\";i:500;s:6:\"height\";i:894;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(147,202,'_wp_attached_file','2017/12/history-image-1.jpg'),(148,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1045;s:4:\"file\";s:27:\"2017/12/history-image-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"history-image-1-230x300.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"history-image-1-784x1024.jpg\";s:5:\"width\";i:784;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"history-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"history-image-1-768x1003.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1003;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"history-image-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"history-image-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"history-image-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"history-image-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"history-image-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"history-image-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"history-image-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"history-image-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:28:\"history-image-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:28:\"history-image-1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"history-image-1-700x914.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:914;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"history-image-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(149,47,'_wp_attachment_image_alt','b'),(150,76,'_wp_attached_file','2017/12/home-image-7.jpg'),(151,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:851;s:6:\"height\";i:501;s:4:\"file\";s:24:\"2017/12/home-image-7.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"home-image-7-300x177.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"home-image-7-768x452.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"home-image-7-570x501.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"home-image-7-600x501.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"home-image-7-800x501.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"home-image-7-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"home-image-7-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"home-image-7-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"home-image-7-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"home-image-7-500x501.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"home-image-7-700x412.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"home-image-7-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152,192,'_wp_attachment_image_alt','f'),(153,193,'_wp_attached_file','2017/12/gallery-image-3.jpg'),(154,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:987;s:4:\"file\";s:27:\"2017/12/gallery-image-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-768x948.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:948;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-500x987.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-700x864.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"gallery-image-3-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(155,119,'_wp_attachment_image_alt','o'),(156,260,'_wp_attachment_image_alt','f'),(157,262,'_wp_attached_file','2017/12/home-image-10.jpg'),(158,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:660;s:4:\"file\";s:25:\"2017/12/home-image-10.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"home-image-10-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"home-image-10-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"home-image-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"home-image-10-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:25:\"home-image-10-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:25:\"home-image-10-600x660.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:25:\"home-image-10-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:25:\"home-image-10-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:25:\"home-image-10-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:25:\"home-image-10-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:25:\"home-image-10-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:26:\"home-image-10-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:25:\"home-image-10-500x660.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:26:\"home-image-10-1000x660.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:660;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:25:\"home-image-10-700x420.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:25:\"home-image-10-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(159,76,'_wp_attachment_image_alt','u'),(160,193,'_wp_attachment_image_alt','f'),(161,264,'_wp_attached_file','2017/12/home-slider-image-1.jpg'),(162,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:31:\"2017/12/home-slider-image-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"home-slider-image-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"home-slider-image-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:32:\"home-slider-image-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:32:\"home-slider-image-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:33:\"home-slider-image-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-700x401.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:31:\"home-slider-image-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(163,202,'_wp_attachment_image_alt','g'),(164,262,'_wp_attachment_image_alt','f'),(165,261,'_wp_attachment_image_alt','h'),(166,31,'_wp_attached_file','2017/12/home-image-3.png'),(167,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:191;s:6:\"height\";i:115;s:4:\"file\";s:24:\"2017/12/home-image-3.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"home-image-3-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;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:{}}}'),(168,31,'_wp_attachment_image_alt','g'),(169,37,'_wp_attached_file','2017/12/home-video-background-image.jpg'),(170,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1293;s:6:\"height\";i:680;s:4:\"file\";s:39:\"2017/12/home-video-background-image.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"home-video-background-image-1024x539.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:539;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-768x404.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-600x680.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:40:\"home-video-background-image-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-500x680.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:40:\"home-video-background-image-1000x680.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-700x368.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:39:\"home-video-background-image-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(171,37,'_wp_attachment_image_alt','g'),(172,264,'_wp_attachment_image_alt','d'),(173,265,'_wp_attached_file','2017/12/home-slider-image-2.jpg'),(174,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:31:\"2017/12/home-slider-image-2.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"home-slider-image-2-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"home-slider-image-2-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:32:\"home-slider-image-2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:32:\"home-slider-image-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:33:\"home-slider-image-2-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-700x401.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:31:\"home-slider-image-2-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(175,265,'_wp_attachment_image_alt','k'),(176,270,'_wp_attached_file','2017/12/sidearea-logo.png'),(177,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:147;s:6:\"height\";i:31;s:4:\"file\";s:25:\"2017/12/sidearea-logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(178,271,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(179,271,'_wp_page_template','full_width.php'),(181,271,'_wpb_vc_js_status','true'),(183,271,'qode_page_background_image_fixed','yes'),(184,271,'qode_revolution-slider','[qode_slider slider=\'home\' auto_start=\'true\' animation_type=\'slide\' slide_animation=\'6000\' height=\'900\' responsive_height=\'yes\' anchor=\'home\' show_navigation_arrows=\'yes\']'),(185,271,'qode_show-sidebar','default'),(186,271,'qode_show-page-title','yes'),(187,271,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(188,271,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(189,271,'qode_enable_content_top_margin','no'),(190,130,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512567303838{padding-top: 95px !important;}.vc_custom_1512480031464{padding-top: 58px !important;}.vc_custom_1616105689085{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}.vc_custom_1616105697103{background-color: #45484b !important;}'),(192,130,'_wp_page_template','full_width.php'),(194,130,'_wpb_vc_js_status','true'),(195,130,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512567303838{padding-top: 95px !important;}.vc_custom_1512480031464{padding-top: 58px !important;}.vc_custom_1616105689085{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}.vc_custom_1616105697103{background-color: #45484b !important;}'),(196,130,'qode_page_background_image_fixed','yes'),(197,130,'qode_show-sidebar','default'),(198,130,'qode_show-page-title','yes'),(199,130,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}'),(218,164,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(220,164,'_wp_page_template','full_width.php'),(222,164,'_wpb_vc_js_status','true'),(223,164,'qode_page_background_image_fixed','yes'),(224,164,'qode_show-sidebar','default'),(225,164,'qode_show-page-title','yes'),(226,164,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(227,274,'_menu_item_type','post_type'),(228,274,'_menu_item_menu_item_parent','0'),(229,274,'_menu_item_object_id','164'),(230,274,'_menu_item_object','page'),(231,274,'_menu_item_target',''),(232,274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(233,274,'_menu_item_xfn',''),(234,274,'_menu_item_url',''),(238,187,'_wp_page_template','full_width.php'),(240,187,'_wpb_vc_js_status','true'),(241,187,'qode_page_background_image_fixed','yes'),(242,187,'qode_show-page-title','yes'),(243,187,'qode_show-sidebar','default'),(245,275,'_menu_item_type','post_type'),(246,275,'_menu_item_menu_item_parent','0'),(247,275,'_menu_item_object_id','187'),(248,275,'_menu_item_object','page'),(249,275,'_menu_item_target',''),(250,275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(251,275,'_menu_item_xfn',''),(252,275,'_menu_item_url',''),(256,276,'_qode-like','0'),(258,65,'qode_testimonial-author','GH, March 2021'),(259,65,'qode_testimonial-text','Thanks so much for showing us around earlier today. We were blown away. I think you are developing something very special'),(262,66,'qode_testimonial-author',' E&C, getting married September 2021'),(263,66,'qode_testimonial-text','You’re making this wedding planning experience really fun and enjoyable for us, we massively appreciate all your help with local knowledge and just general knowledge on  “how to plan a wedding” .\r\n '),(266,67,'qode_testimonial-author','L&D, getting married August 2022'),(267,67,'qode_testimonial-text','Thank you so much for seeing us yesterday, the venue you are creating somewhat took our breath away and it isn\'t even finished yet!!!'),(269,183,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(270,183,'_form','<div>[text text-322 placeholder \"Full Name...\"]</div>\n<div>[text text-322 placeholder \"Email address\"]</div>\n<div>[textarea textarea-836 placeholder \"Text message\"]</div>\n[submit \"SEND\"]'),(271,183,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Bridge \"[your-subject]\"\";s:6:\"sender\";s:53:\"[your-name] <wordpress@bridge123.qodeinteractive.com>\";s:9:\"recipient\";s:27:\"support@qodeinteractive.com\";s:4:\"body\";s:181:\"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 Bridge (http://bridge123.qodeinteractive.com)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(272,183,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Bridge \"[your-subject]\"\";s:6:\"sender\";s:48:\"Bridge <wordpress@bridge123.qodeinteractive.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:123:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Bridge (http://bridge123.qodeinteractive.com)\";s:18:\"additional_headers\";s:37:\"Reply-To: support@qodeinteractive.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(273,183,'_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.\";}'),(274,183,'_additional_settings',''),(275,183,'_locale','en_US'),(276,200,'_wpb_shortcodes_custom_css','.vc_custom_1512637091873{padding-top: 121px !important;}.vc_custom_1512732320444{padding-bottom: 125px !important;}'),(278,200,'_wp_page_template','full_width.php'),(280,200,'_wpb_vc_js_status','true'),(281,200,'qode_page_background_image_fixed','yes'),(282,200,'qode_show-page-title','yes'),(283,200,'qode_show-sidebar','default'),(284,200,'_wpb_shortcodes_custom_css','.vc_custom_1512637091873{padding-top: 121px !important;}.vc_custom_1512732320444{padding-bottom: 125px !important;}'),(285,266,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(286,266,'_wp_page_template','default'),(287,266,'slide_template','default'),(288,266,'_wpb_vc_js_status','false'),(289,266,'qode_page_background_image_fixed','yes'),(290,266,'qode_show-sidebar','default'),(300,278,'_wp_attached_file','revslider/home-slider-image-31.png'),(301,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:911;s:4:\"file\";s:35:\"revslider//home-slider-image-31.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"home-slider-image-31-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(302,279,'_wp_attached_file','revslider/home-slider-image-21.png'),(303,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:605;s:6:\"height\";i:894;s:4:\"file\";s:35:\"revslider//home-slider-image-21.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"home-slider-image-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(304,280,'_wp_attached_file','revslider/home-slider-image-11.png'),(305,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:900;s:4:\"file\";s:35:\"revslider//home-slider-image-11.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"home-slider-image-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(306,281,'_wp_attached_file','revslider/home-slider-image-11.jpg'),(307,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:35:\"revslider//home-slider-image-11.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"home-slider-image-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(308,282,'_wp_attached_file','revslider/home-slider-image-21.jpg'),(309,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:35:\"revslider//home-slider-image-21.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"home-slider-image-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(310,283,'_elementor_edit_mode','builder'),(311,283,'_elementor_template_type','kit'),(312,283,'_elementor_version','3.1.4'),(313,284,'_wp_attached_file','2021/03/Humdingers_Events-Catering_white.png'),(314,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:619;s:4:\"file\";s:44:\"2021/03/Humdingers_Events-Catering_white.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-570x570.png\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-600x619.png\";s:5:\"width\";i:600;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-616x600.png\";s:5:\"width\";i:616;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-616x500.png\";s:5:\"width\";i:616;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-500x619.png\";s:5:\"width\";i:500;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_white-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(315,285,'_wp_attached_file','2021/03/Humdingers_Events-Catering_black.png'),(316,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:619;s:4:\"file\";s:44:\"2021/03/Humdingers_Events-Catering_black.png\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-570x570.png\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-600x619.png\";s:5:\"width\";i:600;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-616x600.png\";s:5:\"width\";i:616;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-616x500.png\";s:5:\"width\";i:616;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-500x619.png\";s:5:\"width\";i:500;s:6:\"height\";i:619;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Humdingers_Events-Catering_black-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(317,286,'_wp_attached_file','2021/03/h1-footer-02.jpg'),(318,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2021/03/h1-footer-02.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h1-footer-02-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h1-footer-02-1024x320.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-768x240.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"h1-footer-02-1536x480.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"h1-footer-02-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-500x600.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:25:\"h1-footer-02-1000x600.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-700x219.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"h1-footer-02-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(319,164,'_edit_lock','1620901414:1'),(320,164,'_edit_last','1'),(321,287,'_wpb_shortcodes_custom_css','.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(322,290,'_wp_attached_file','2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-scaled.jpg'),(323,290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:40:\"nathan-dumlao-5BB_atDT4oA-unsplash-1.jpg\";}'),(324,289,'_edit_last','1'),(325,289,'qode_slide-background-type','image'),(326,289,'qode_slide-image','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg'),(327,289,'qode_enable_image_animation','no'),(328,289,'qode_enable_image_animation_type','zoom_center'),(329,289,'qode_slide-thumbnail-animation','flip'),(330,289,'qode_slide-content-animation','all_at_once'),(331,289,'qode_slide-title-font-family','-1'),(332,289,'qode_slide-separator-after-title','no'),(333,289,'qode_slide_separator_gradient','no'),(334,289,'qode_slide-border-around-title','no'),(335,289,'qode_slide-subtitle-position','bellow_title'),(336,289,'qode_slide-subtitle-font-family','Lato'),(337,289,'qode_slide-text-font-family','Lato'),(338,289,'qode_slide_svg_drawing','no'),(339,289,'qode_slide_button_type','qode-button'),(340,289,'qode_slide-button-hover-type','default'),(341,289,'qode_slide_button_v2_icon_gradient','no'),(342,289,'qode_slide_button1_icon_pack','no_icon'),(343,289,'qode_slide_button_type2','qode-button'),(344,289,'qode_slide-button-hover-type2','default'),(345,289,'qode_slide_button2_v2_icon_gradient','no'),(346,289,'qode_slide_button2_icon_pack','no_icon'),(347,289,'qode_slide-separate-text-graphic','no'),(348,289,'qode_slide-content-vertical-middle','no'),(349,289,'qode_slide_vertical_content_full_width','no'),(350,289,'qode_slide_general_animation','yes'),(351,289,'qode_slide_title_animation_scroll','no'),(352,289,'qode_slide_subtitle_animation_scroll','no'),(353,289,'qode_slide_graphic_animation_scroll','no'),(354,289,'qode_slide_text_animation_scroll','no'),(355,289,'qode_slide_button1_animation_scroll','no'),(356,289,'qode_slide_button2_animation_scroll','no'),(357,289,'qode_slide_separator_bottom_animation_scroll','no'),(358,289,'qode_slide_svg_animation_scroll','no'),(359,289,'rs_page_bg_color',''),(360,289,'_edit_lock','1620729418:1'),(361,271,'_edit_lock','1620917943:1'),(362,271,'_edit_last','1'),(363,291,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(364,291,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(367,293,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(368,293,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(371,295,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(372,295,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(373,130,'_edit_lock','1620337942:1'),(374,130,'_edit_last','1'),(375,296,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}'),(376,296,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512567303838{padding-top: 95px !important;}.vc_custom_1512480031464{padding-top: 58px !important;}.vc_custom_1616105551637{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}'),(379,298,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}'),(380,298,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512567303838{padding-top: 95px !important;}.vc_custom_1512480031464{padding-top: 58px !important;}.vc_custom_1616105551637{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}'),(381,299,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}'),(382,299,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512567303838{padding-top: 95px !important;}.vc_custom_1512480031464{padding-top: 58px !important;}.vc_custom_1616105551637{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}'),(383,301,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}'),(384,301,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512567303838{padding-top: 95px !important;}.vc_custom_1512480031464{padding-top: 58px !important;}.vc_custom_1616105689085{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}.vc_custom_1616105697103{background-color: #45484b !important;}'),(385,200,'_edit_lock','1620332683:1'),(386,200,'_edit_last','1'),(387,302,'_wpb_shortcodes_custom_css','.vc_custom_1512637091873{padding-top: 121px !important;}.vc_custom_1512732320444{padding-bottom: 125px !important;}'),(388,271,'qode_header-style','light'),(390,271,'qode_header_color_transparency_per_page','1'),(391,271,'qode_header-style-on-scroll','yes'),(392,187,'_edit_lock','1620904964:1'),(393,303,'_edit_lock','1620332707:1'),(394,303,'_edit_last','1'),(395,303,'_wp_page_template','full_width.php'),(396,303,'_wpb_vc_js_status','false'),(397,304,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(398,303,'qode_page_background_image_fixed','yes'),(399,303,'qode_show-sidebar','default'),(400,303,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(401,305,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(403,307,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(405,307,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(406,308,'_wp_attached_file','2021/03/Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-scaled.jpg'),(407,308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1714;s:6:\"height\";i:2560;s:4:\"file\";s:61:\"2021/03/Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-768x1147.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1028x1536.jpg\";s:5:\"width\";i:1028;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1371x2048.jpg\";s:5:\"width\";i:1371;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:55:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:55:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:55:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-700x1046.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1046;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:54:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:46:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn.jpg\";}'),(408,309,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-bridge-and-grooms.jpg'),(409,309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1029;s:4:\"file\";s:47:\"2021/03/Thirsk-Lodge-Barn-bridge-and-grooms.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-bridge-and-grooms-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-bridge-and-grooms-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-bridge-and-grooms-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-700x900.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-bridge-and-grooms-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(410,310,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(411,310,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(412,311,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-Bridge-and-Groom.jpg'),(413,311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:46:\"2021/03/Thirsk-Lodge-Barn-Bridge-and-Groom.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barn-Bridge-and-Groom-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-Bridge-and-Groom-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(414,312,'_wp_attached_file','2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-1.jpg'),(415,312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:50:\"2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:51:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:51:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:52:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(416,313,'_wp_attached_file','2021/03/christina-deravedisian-CouOAXfXYyk-unsplash-1-scaled.jpg'),(417,313,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:64:\"2021/03/christina-deravedisian-CouOAXfXYyk-unsplash-1-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:59:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:59:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:58:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:58:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:59:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:58:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:57:\"christina-deravedisian-CouOAXfXYyk-unsplash-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:49:\"christina-deravedisian-CouOAXfXYyk-unsplash-1.jpg\";}'),(418,314,'_wp_attached_file','2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg'),(419,314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1278;s:4:\"file\";s:42:\"2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Christmas-at-Thirsk-Lodge-Barn-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Christmas-at-Thirsk-Lodge-Barn-1536x1022.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1022;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:43:\"Christmas-at-Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:43:\"Christmas-at-Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:44:\"Christmas-at-Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-700x466.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:42:\"Christmas-at-Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(420,315,'_wp_attached_file','2021/03/Christmas_Thirsk-Lodge-Barn.jpg'),(421,315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:39:\"2021/03/Christmas_Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Christmas_Thirsk-Lodge-Barn-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Christmas_Thirsk-Lodge-Barn-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:40:\"Christmas_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:40:\"Christmas_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:41:\"Christmas_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:39:\"Christmas_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(422,316,'_wp_attached_file','2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-2.jpg'),(423,316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:50:\"2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-2.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:51:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:51:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:52:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:50:\"nathan-dumlao-5BB_atDT4oA-unsplash-1-2-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(424,317,'_wp_attached_file','2021/03/Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-scaled.jpg'),(425,317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:64:\"2021/03/Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:59:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:59:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:59:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:49:\"Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn.jpg\";}'),(426,318,'_wp_attached_file','2021/03/Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-scaled.jpg'),(427,318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1714;s:6:\"height\";i:2560;s:4:\"file\";s:63:\"2021/03/Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-201x300.jpg\";s:5:\"width\";i:201;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-686x1024.jpg\";s:5:\"width\";i:686;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-768x1147.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-1028x1536.jpg\";s:5:\"width\";i:1028;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-1371x2048.jpg\";s:5:\"width\";i:1371;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:57:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-700x1046.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1046;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:56:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:48:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1.jpg\";}'),(428,319,'_wp_attached_file','2021/03/Stunning-events-venue_North-Yorkshire-scaled.jpg'),(429,319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/03/Stunning-events-venue_North-Yorkshire-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Stunning-events-venue_North-Yorkshire-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Stunning-events-venue_North-Yorkshire-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"Stunning-events-venue_North-Yorkshire-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"Stunning-events-venue_North-Yorkshire-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"Stunning-events-venue_North-Yorkshire-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:50:\"Stunning-events-venue_North-Yorkshire-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:51:\"Stunning-events-venue_North-Yorkshire-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:50:\"Stunning-events-venue_North-Yorkshire-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"Stunning-events-venue_North-Yorkshire-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:41:\"Stunning-events-venue_North-Yorkshire.jpg\";}'),(430,320,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg'),(431,320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:48:\"2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-2021-wedding-venue-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-2021-wedding-venue-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-2021-wedding-venue-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-2021-wedding-venue-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-2021-wedding-venue-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-2021-wedding-venue-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(432,321,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-Bridge-and-Groom-1.jpg'),(433,321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:48:\"2021/03/Thirsk-Lodge-Barn-Bridge-and-Groom-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Bridge-and-Groom-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(434,322,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-renovation.jpg'),(435,322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1434;s:4:\"file\";s:40:\"2021/03/Thirsk-Lodge-Barn-renovation.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn-renovation-1024x765.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-768x574.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barn-renovation-1536x1147.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn-renovation-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn-renovation-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barn-renovation-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-700x523.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barn-renovation-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(436,323,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk-scaled.jpg'),(437,323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1704;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk-scaled.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-768x1154.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-1023x1536.jpg\";s:5:\"width\";i:1023;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:52:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-1363x2048.jpg\";s:5:\"width\";i:1363;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:52:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-700x1051.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1051;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}s:14:\"original_image\";s:42:\"Thirsk-Lodge-Barn_Wedding-venue-Thirsk.jpg\";}'),(438,324,'_wp_attached_file','2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg'),(439,324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:68:\"2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:70:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:69:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:69:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:70:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:68:\"Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(440,325,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-bridge-and-grooms-1.jpg'),(441,325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1029;s:4:\"file\";s:49:\"2021/03/Thirsk-Lodge-Barn-bridge-and-grooms-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-700x900.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-bridge-and-grooms-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(442,326,'_wp_attached_file','2021/03/Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn.jpg'),(443,326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:61:\"2021/03/Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:63:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:62:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:62:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:63:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:61:\"Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(444,327,'_wp_attached_file','2021/03/Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue.jpg'),(445,327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1095;s:4:\"file\";s:70:\"2021/03/Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:71:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-1024x584.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-768x438.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:71:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-1536x876.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:876;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:71:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:71:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:72:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-700x399.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:70:\"Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(446,328,'_wp_attached_file','2021/03/Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue.jpg'),(447,328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:58:\"2021/03/Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:59:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:59:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:60:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-700x525.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:58:\"Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(448,329,'_wp_attached_file','2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg'),(449,329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1282;s:4:\"file\";s:50:\"2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:51:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:51:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:52:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:50:\"Wedding-Venue_Thirsk_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(450,330,'_wp_attached_file','2021/03/Wedding-Venue_ultimate-venue-destination_North-Yorkshire.jpg'),(451,330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1272;s:4:\"file\";s:68:\"2021/03/Wedding-Venue_ultimate-venue-destination_North-Yorkshire.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:69:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:70:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-1536x1018.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1018;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:69:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:69:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:70:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-700x464.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:464;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:68:\"Wedding-Venue_ultimate-venue-destination_North-Yorkshire-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(452,331,'_wp_attached_file','2021/03/wedding-dreamz-ga7DG9lYbZg-unsplash.jpg'),(453,331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:47:\"2021/03/wedding-dreamz-ga7DG9lYbZg-unsplash.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"wedding-dreamz-ga7DG9lYbZg-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"wedding-dreamz-ga7DG9lYbZg-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:48:\"wedding-dreamz-ga7DG9lYbZg-unsplash-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"wedding-dreamz-ga7DG9lYbZg-unsplash-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:49:\"wedding-dreamz-ga7DG9lYbZg-unsplash-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"wedding-dreamz-ga7DG9lYbZg-unsplash-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(454,332,'_wp_attached_file','2021/03/Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn.jpg'),(455,332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:58:\"2021/03/Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:59:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:59:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:60:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:58:\"Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(456,333,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(457,333,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(458,334,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(459,334,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(460,335,'_wp_attached_file','2021/03/LettyWill_Thirsk-Lodge-Barn.jpg'),(461,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:39:\"2021/03/LettyWill_Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"LettyWill_Thirsk-Lodge-Barn-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"LettyWill_Thirsk-Lodge-Barn-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:40:\"LettyWill_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:40:\"LettyWill_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:41:\"LettyWill_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:39:\"LettyWill_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(462,336,'_wp_attached_file','2021/03/Overlay.png'),(463,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:19:\"2021/03/Overlay.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(464,289,'qode_slide-overlay-image','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Overlay.png'),(465,337,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(466,337,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512480013985{padding-top: 100px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(467,338,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(468,338,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(469,339,'_edit_last','1'),(470,339,'_thumbnail_id','323'),(471,339,'qode_masonry_gallery_item_link_target','_self'),(472,339,'qode_masonry_item_parallax','no'),(473,339,'qode_masonry_gallery_item_size','rectangle_portrait'),(474,339,'qode_masonry_gallery_item_type','with_button'),(475,339,'qode_masonry_gallery_item_with_icon_icon_pack','font_awesome'),(476,339,'rs_page_bg_color',''),(477,339,'_edit_lock','1616187120:1'),(478,340,'_edit_last','1'),(479,340,'_thumbnail_id','335'),(480,340,'qode_masonry_gallery_item_link_target','_self'),(481,340,'qode_masonry_item_parallax','no'),(482,340,'qode_masonry_gallery_item_size','square_small'),(483,340,'qode_masonry_gallery_item_type','with_button'),(484,340,'qode_masonry_gallery_item_with_icon_icon_pack','font_awesome'),(485,340,'rs_page_bg_color',''),(486,340,'_edit_lock','1616192668:1'),(487,341,'_edit_last','1'),(488,341,'_thumbnail_id','330'),(489,341,'qode_masonry_gallery_item_link_target','_self'),(490,341,'qode_masonry_item_parallax','no'),(491,341,'qode_masonry_gallery_item_size','square_small'),(492,341,'qode_masonry_gallery_item_type','with_button'),(493,341,'qode_masonry_gallery_item_with_icon_icon_pack','font_awesome'),(494,341,'rs_page_bg_color',''),(495,341,'_edit_lock','1616192687:1'),(496,342,'_edit_last','1'),(497,342,'_thumbnail_id','324'),(498,342,'qode_masonry_gallery_item_link_target','_self'),(499,342,'qode_masonry_item_parallax','no'),(500,342,'qode_masonry_gallery_item_size','square_big'),(501,342,'qode_masonry_gallery_item_type','with_button'),(502,342,'qode_masonry_gallery_item_with_icon_icon_pack','font_awesome'),(503,342,'rs_page_bg_color',''),(504,342,'_edit_lock','1616195922:1'),(505,343,'_edit_last','1'),(506,343,'_thumbnail_id','321'),(507,343,'qode_masonry_gallery_item_link_target','_self'),(508,343,'qode_masonry_item_parallax','no'),(509,343,'qode_masonry_gallery_item_size','rectangle_landscape'),(510,343,'qode_masonry_gallery_item_type','with_button'),(511,343,'qode_masonry_gallery_item_with_icon_icon_pack','font_awesome'),(512,343,'rs_page_bg_color',''),(513,343,'_edit_lock','1616195922:1'),(514,344,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(515,344,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512480022799{padding-top: 150px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(516,346,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(517,346,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(518,347,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(519,347,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(520,348,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(521,348,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(524,349,'_edit_lock','1620332697:1'),(525,349,'_edit_last','1'),(526,349,'_wp_page_template','full_width.php'),(527,349,'_wpb_vc_js_status','false'),(528,350,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(529,349,'qode_page_background_image_fixed','yes'),(530,349,'qode_show-sidebar','default'),(531,349,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(532,351,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(533,351,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(534,289,'qode_slide-title-color','#ffffff'),(535,289,'qode_slide-title-font-size','90'),(536,289,'qode_slide-subtitle','Wedding and Events Venue'),(537,289,'qode_slide-subtitle-color','#ffffff'),(538,289,'qode_slide-subtitle-font-size','20'),(540,289,'qode_slide-text-color','#ffffff'),(541,289,'qode_slide-text-font-size','20'),(542,352,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(543,352,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(544,353,'_wp_attached_file','2021/03/Crest.png'),(545,353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:161;s:6:\"height\";i:228;s:4:\"file\";s:17:\"2021/03/Crest.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Crest-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:17:\"Crest-161x198.png\";s:5:\"width\";i:161;s:6:\"height\";i:198;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:{}}}'),(546,355,'_wp_attached_file','2021/03/Hitched_Thrisk-Lodge-Barns.jpg'),(547,355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:180;s:4:\"file\";s:38:\"2021/03/Hitched_Thrisk-Lodge-Barns.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Hitched_Thrisk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(548,356,'_wp_attached_file','2021/03/Unveiled_Thirsk-Lodge-Barns.jpg'),(549,356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:180;s:4:\"file\";s:39:\"2021/03/Unveiled_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Unveiled_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(550,357,'_wp_attached_file','2021/03/Coco_Thrisk-Lodge-Barns.jpg'),(551,357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:180;s:4:\"file\";s:35:\"2021/03/Coco_Thrisk-Lodge-Barns.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Coco_Thrisk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(552,358,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(553,358,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(554,359,'_wp_attached_file','2021/03/Map-edited.jpg'),(555,359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:960;s:4:\"file\";s:22:\"2021/03/Map-edited.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Map-edited-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Map-edited-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Map-edited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Map-edited-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"Map-edited-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:22:\"Map-edited-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:22:\"Map-edited-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:22:\"Map-edited-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:22:\"Map-edited-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:22:\"Map-edited-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:22:\"Map-edited-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:22:\"Map-edited-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:23:\"Map-edited-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:22:\"Map-edited-500x960.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:23:\"Map-edited-1000x960.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:22:\"Map-edited-700x350.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:22:\"Map-edited-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(556,360,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(557,360,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(560,361,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(561,361,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1616192203309{padding-top: 4% !important;padding-bottom: 4% !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}'),(562,362,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(563,362,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1616192298146{padding-top: 8% !important;padding-bottom: 8% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(564,363,'_wp_attached_file','2021/03/banqueting-hall_Thirsk-Lodge-Barn.jpg'),(565,363,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1325;s:4:\"file\";s:45:\"2021/03/banqueting-hall_Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"banqueting-hall_Thirsk-Lodge-Barn-1024x707.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:707;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"banqueting-hall_Thirsk-Lodge-Barn-1536x1060.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1060;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:46:\"banqueting-hall_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:46:\"banqueting-hall_Thirsk-Lodge-Barn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:47:\"banqueting-hall_Thirsk-Lodge-Barn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-700x483.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:45:\"banqueting-hall_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(566,364,'_wp_attached_file','2021/03/Thirsk-Lodge-Barns-brides-balcony.jpg'),(567,364,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1317;s:4:\"file\";s:45:\"2021/03/Thirsk-Lodge-Barns-brides-balcony.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns-brides-balcony-1024x702.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:702;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns-brides-balcony-1536x1054.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1054;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns-brides-balcony-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns-brides-balcony-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns-brides-balcony-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-700x480.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-brides-balcony-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(568,365,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg'),(569,365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1261;s:4:\"file\";s:48:\"2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-Venue-illustration-1024x673.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-Venue-illustration-1536x1009.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1009;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-Venue-illustration-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barn-Venue-illustration-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barn-Venue-illustration-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-700x460.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:460;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barn-Venue-illustration-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(570,366,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-Venue-illustration-2021.jpg'),(571,366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:988;s:6:\"height\";i:620;s:4:\"file\";s:53:\"2021/03/Thirsk-Lodge-Barn-Venue-illustration-2021.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-768x482.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-600x620.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-988x500.jpg\";s:5:\"width\";i:988;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-500x620.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-700x439.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:53:\"Thirsk-Lodge-Barn-Venue-illustration-2021-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(572,367,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(573,367,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1616192298146{padding-top: 8% !important;padding-bottom: 8% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(574,368,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(575,368,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616192298146{padding-top: 8% !important;padding-bottom: 8% !important;}'),(576,289,'qode_slide-subtitle-letter-spacing','8'),(577,289,'qode_slide-content-alignment','center'),(578,289,'qode_slide-content-width','98'),(579,289,'qode_slide-content-top','38'),(580,289,'qode_slide-content-left','1'),(581,369,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(582,369,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}'),(583,370,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(584,370,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}'),(588,289,'qode_slide-text-text-transform','uppercase'),(589,289,'qode_slide-text-font-style','normal'),(590,289,'qode_slide-text-font-weight','400'),(591,371,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(592,371,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}'),(593,372,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(594,372,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}'),(595,373,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(596,373,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(597,374,'_edit_lock','1620901368:1'),(598,374,'_edit_last','1'),(599,374,'_wp_page_template','default'),(600,374,'_wpb_vc_js_status','true'),(601,374,'qode_page_background_image_fixed','yes'),(602,374,'qode_show-sidebar','default'),(604,376,'_menu_item_type','post_type'),(605,376,'_menu_item_menu_item_parent','0'),(606,376,'_menu_item_object_id','374'),(607,376,'_menu_item_object','page'),(608,376,'_menu_item_target',''),(609,376,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(610,376,'_menu_item_xfn',''),(611,376,'_menu_item_url',''),(615,275,'_wp_old_date','2021-03-18'),(617,274,'_wp_old_date','2021-03-18'),(618,377,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(619,377,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(647,8,'_edit_lock','1620333894:1'),(648,1,'_edit_lock','1616194497:1'),(650,1,'_elementor_template_type','wp-post'),(651,1,'_elementor_version','3.1.4'),(652,283,'_elementor_css','a:6:{s:4:\"time\";i:1616194448;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:1;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(653,1,'_qode-like','0'),(656,381,'_elementor_edit_mode','builder'),(657,381,'_elementor_template_type','wp-post'),(658,381,'_elementor_version','3.1.4'),(659,1,'_edit_last','1'),(662,1,'qode_page_background_image_fixed','yes'),(663,1,'qode_hide-featured-image','no'),(664,1,'qode_post_style_masonry_date_image','full'),(665,1,'qode_post_style_masonry_gallery','default'),(666,1,'qode_show-sidebar','default'),(667,1,'gallery_type','slider'),(668,1,'video_format_choose','youtube'),(669,1,'_thumbnail_id','365'),(670,1,'_wp_page_template','default'),(671,276,'_edit_lock','1616194374:1'),(672,276,'_edit_last','1'),(673,276,'_thumbnail_id','324'),(674,276,'_wp_page_template','default'),(677,276,'qode_page_background_image_fixed','yes'),(678,276,'qode_hide-featured-image','no'),(679,276,'qode_post_style_masonry_date_image','full'),(680,276,'qode_post_style_masonry_gallery','default'),(681,276,'qode_show-sidebar','default'),(682,276,'gallery_type','slider'),(683,276,'video_format_choose','youtube'),(684,383,'_edit_last','1'),(685,383,'_edit_lock','1616194395:1'),(686,383,'_thumbnail_id','329'),(687,383,'_wp_page_template','default'),(690,383,'qode_page_background_image_fixed','yes'),(691,383,'qode_hide-featured-image','no'),(692,383,'qode_post_style_masonry_date_image','full'),(693,383,'qode_post_style_masonry_gallery','default'),(694,383,'qode_show-sidebar','default'),(695,383,'gallery_type','slider'),(696,383,'video_format_choose','youtube'),(706,8,'_edit_last','1'),(707,8,'qode_page_background_image_fixed','yes'),(708,8,'qode_header-style','light'),(709,8,'qode_header_color_per_page','#404d56'),(710,8,'qode_header_color_transparency_per_page','1'),(711,8,'qode_show-sidebar','default'),(712,8,'_wpb_vc_js_status','true'),(713,386,'_edit_last','1'),(714,386,'_edit_lock','1616194532:1'),(715,386,'_thumbnail_id','323'),(716,386,'_wp_page_template','default'),(719,386,'qode_page_background_image_fixed','yes'),(720,386,'qode_hide-featured-image','no'),(721,386,'qode_post_style_masonry_date_image','full'),(722,386,'qode_post_style_masonry_gallery','default'),(723,386,'qode_show-sidebar','default'),(724,386,'gallery_type','slider'),(725,386,'video_format_choose','youtube'),(726,388,'_edit_last','1'),(727,388,'_edit_lock','1616194558:1'),(728,388,'_thumbnail_id','320'),(729,388,'_wp_page_template','default'),(732,388,'qode_page_background_image_fixed','yes'),(733,388,'qode_hide-featured-image','no'),(734,388,'qode_post_style_masonry_date_image','full'),(735,388,'qode_post_style_masonry_gallery','default'),(736,388,'qode_show-sidebar','default'),(737,388,'gallery_type','slider'),(738,388,'video_format_choose','youtube'),(739,390,'_edit_last','1'),(740,390,'_edit_lock','1616195925:1'),(741,390,'_thumbnail_id','308'),(742,390,'_wp_page_template','default'),(745,390,'qode_page_background_image_fixed','yes'),(746,390,'qode_hide-featured-image','no'),(747,390,'qode_post_style_masonry_date_image','full'),(748,390,'qode_post_style_masonry_gallery','default'),(749,390,'qode_show-sidebar','default'),(750,390,'gallery_type','slider'),(751,390,'video_format_choose','youtube'),(753,187,'_edit_last','1'),(754,393,'_wpb_shortcodes_custom_css','.vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}'),(755,394,'_wpb_shortcodes_custom_css','.vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}'),(756,187,'qode_header-style','light'),(757,187,'qode_header_color_per_page','#404d56'),(758,187,'qode_header_color_transparency_per_page','1'),(759,271,'qode_header_color_per_page','#404d56'),(761,396,'_wpb_shortcodes_custom_css','.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(762,397,'_wpb_shortcodes_custom_css','.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(763,164,'qode_header-style','light'),(764,164,'qode_header_color_per_page','#404d56'),(765,164,'qode_header_color_transparency_per_page','1'),(767,398,'_wpb_shortcodes_custom_css','.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(768,399,'_wpb_shortcodes_custom_css','.vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}'),(769,400,'_wpb_shortcodes_custom_css','.vc_custom_1616195535878{padding-top: 20px !important;}.vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}'),(770,401,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(771,401,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(772,402,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(773,402,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(774,390,'_qode-like','0'),(775,403,'_edit_last','1'),(776,403,'_edit_lock','1620900990:1'),(777,403,'_wp_page_template','full_width.php'),(778,403,'_wpb_vc_js_status','true'),(779,404,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(780,403,'qode_page_background_image_fixed','yes'),(781,403,'qode_show-sidebar','default'),(782,403,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}'),(783,406,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(785,407,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(786,403,'qode_header_color_per_page','#404d56'),(787,403,'qode_header_color_transparency_per_page','1'),(788,403,'qode_show-page-title','yes'),(789,403,'qode_margin_after_title','30'),(790,408,'_menu_item_type','post_type'),(791,408,'_menu_item_menu_item_parent','0'),(792,408,'_menu_item_object_id','403'),(793,408,'_menu_item_object','page'),(794,408,'_menu_item_target',''),(795,408,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(796,408,'_menu_item_xfn',''),(797,408,'_menu_item_url',''),(802,275,'_wp_old_date','2021-03-19'),(803,274,'_wp_old_date','2021-03-19'),(804,376,'_wp_old_date','2021-03-19'),(805,409,'_wpb_shortcodes_custom_css','.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(806,164,'qode_margin_after_title','30'),(807,410,'_wpb_shortcodes_custom_css','.vc_custom_1616227540739{padding-top: 92px !important;}.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(808,411,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(809,411,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(810,412,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(811,413,'_edit_last','1'),(812,413,'_edit_lock','1620909494:1'),(813,413,'_wp_page_template','full_width.php'),(814,413,'_wpb_vc_js_status','true'),(815,414,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(816,413,'qode_page_background_image_fixed','yes'),(817,413,'qode_show-sidebar','default'),(818,413,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(820,416,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}'),(821,413,'qode_header-style','light'),(822,413,'qode_header_color_per_page','#404d56'),(823,413,'qode_header_color_transparency_per_page','1'),(824,417,'_menu_item_type','post_type'),(825,417,'_menu_item_menu_item_parent','0'),(826,417,'_menu_item_object_id','413'),(827,417,'_menu_item_object','page'),(828,417,'_menu_item_target',''),(829,417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(830,417,'_menu_item_xfn',''),(831,417,'_menu_item_url',''),(833,418,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}'),(834,413,'qode_show-page-title','yes'),(835,419,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}'),(837,374,'qode_header-style','light'),(838,374,'qode_header_color_per_page','#404d56'),(839,374,'qode_header_color_transparency_per_page','1'),(840,374,'qode_show-page-title','yes'),(842,426,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(843,426,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(846,428,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}'),(847,429,'_wp_attached_file','2021/03/Thirsk-Lodge-Barn-Logo.png'),(848,429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:228;s:4:\"file\";s:34:\"2021/03/Thirsk-Lodge-Barn-Logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn-Logo-135x150.png\";s:5:\"width\";i:135;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn-Logo-135x198.png\";s:5:\"width\";i:135;s:6:\"height\";i:198;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:{}}}'),(849,431,'_edit_last','1'),(850,431,'_edit_lock','1620332751:1'),(851,431,'_wp_page_template','full_width.php'),(852,431,'_wpb_vc_js_status','true'),(853,431,'qode_page_background_image_fixed','yes'),(854,431,'qode_show-sidebar','default'),(855,433,'_edit_last','1'),(856,433,'_edit_lock','1620905362:1'),(857,433,'_wp_page_template','full_width.php'),(858,433,'_wpb_vc_js_status','true'),(859,433,'qode_page_background_image_fixed','yes'),(860,433,'qode_show-sidebar','default'),(861,433,'qode_header-style','light'),(862,433,'qode_show-page-title','yes'),(863,435,'_edit_last','1'),(864,435,'_edit_lock','1620909490:1'),(865,435,'_wp_page_template','full_width.php'),(866,435,'_wpb_vc_js_status','true'),(867,435,'qode_page_background_image_fixed','yes'),(868,435,'qode_header-style','light'),(869,435,'qode_header_color_per_page','#404d56'),(870,435,'qode_header_color_transparency_per_page','1'),(871,435,'qode_show-page-title','yes'),(872,435,'qode_show-sidebar','default'),(873,437,'_edit_last','1'),(874,437,'_edit_lock','1620901348:1'),(875,437,'_wp_page_template','full_width.php'),(876,437,'_wpb_vc_js_status','true'),(877,437,'qode_page_background_image_fixed','yes'),(878,437,'qode_header-style','light'),(879,437,'qode_header_color_per_page','#404d56'),(880,437,'qode_header_color_transparency_per_page','1'),(881,437,'qode_show-sidebar','default'),(882,437,'qode_show-page-title','yes'),(883,440,'_edit_last','1'),(884,440,'_edit_lock','1620901177:1'),(885,440,'_wp_page_template','full_width.php'),(886,440,'_wpb_vc_js_status','true'),(887,440,'qode_page_background_image_fixed','yes'),(888,440,'qode_header-style','light'),(889,440,'qode_header_color_per_page','#404d56'),(890,440,'qode_header_color_transparency_per_page','1'),(891,440,'qode_show-page-title','yes'),(892,440,'qode_show-sidebar','default'),(893,442,'_menu_item_type','post_type'),(894,442,'_menu_item_menu_item_parent','417'),(895,442,'_menu_item_object_id','440'),(896,442,'_menu_item_object','page'),(897,442,'_menu_item_target',''),(898,442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(899,442,'_menu_item_xfn',''),(900,442,'_menu_item_url',''),(902,443,'_menu_item_type','post_type'),(903,443,'_menu_item_menu_item_parent','417'),(904,443,'_menu_item_object_id','437'),(905,443,'_menu_item_object','page'),(906,443,'_menu_item_target',''),(907,443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(908,443,'_menu_item_xfn',''),(909,443,'_menu_item_url',''),(911,444,'_menu_item_type','post_type'),(912,444,'_menu_item_menu_item_parent','417'),(913,444,'_menu_item_object_id','435'),(914,444,'_menu_item_object','page'),(915,444,'_menu_item_target',''),(916,444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(917,444,'_menu_item_xfn',''),(918,444,'_menu_item_url',''),(920,445,'_menu_item_type','post_type'),(921,445,'_menu_item_menu_item_parent','417'),(922,445,'_menu_item_object_id','433'),(923,445,'_menu_item_object','page'),(924,445,'_menu_item_target',''),(925,445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(926,445,'_menu_item_xfn',''),(927,445,'_menu_item_url',''),(939,408,'_wp_old_date','2021-03-20'),(940,417,'_wp_old_date','2021-03-20'),(942,275,'_wp_old_date','2021-03-20'),(943,274,'_wp_old_date','2021-03-20'),(944,376,'_wp_old_date','2021-03-20'),(945,433,'qode_header_color_per_page','#404d56'),(946,433,'qode_header_color_transparency_per_page','1'),(947,447,'_edit_last','1'),(948,447,'_edit_lock','1620905354:1'),(949,447,'_wp_page_template','full_width.php'),(950,447,'_wpb_vc_js_status','true'),(951,447,'qode_page_background_image_fixed','yes'),(952,447,'qode_header-style','light'),(953,447,'qode_header_color_per_page','#404d56'),(954,447,'qode_header_color_transparency_per_page','1'),(955,447,'qode_show-page-title','yes'),(956,447,'qode_show-sidebar','default'),(957,450,'_edit_last','1'),(958,450,'_edit_lock','1617119668:1'),(959,450,'_wp_page_template','default'),(960,450,'_wpb_vc_js_status','false'),(961,450,'qode_page_background_image_fixed','yes'),(962,450,'qode_header-style','light'),(963,450,'qode_header_color_per_page','#45484b'),(964,450,'qode_header_color_transparency_per_page','1'),(965,450,'qode_show-sidebar','default'),(966,450,'qode_show-page-title','yes'),(967,452,'_edit_last','1'),(968,452,'_edit_lock','1620766165:1'),(969,452,'_wp_page_template','full_width.php'),(970,452,'_wpb_vc_js_status','true'),(971,452,'qode_page_background_image_fixed','yes'),(972,452,'qode_show-sidebar','default'),(973,452,'qode_header-style','light'),(974,452,'qode_header_color_per_page','#404d56'),(975,452,'qode_header_color_transparency_per_page','1'),(976,454,'_menu_item_type','post_type'),(977,454,'_menu_item_menu_item_parent','408'),(978,454,'_menu_item_object_id','452'),(979,454,'_menu_item_object','page'),(980,454,'_menu_item_target',''),(981,454,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(982,454,'_menu_item_xfn',''),(983,454,'_menu_item_url',''),(994,456,'_menu_item_type','post_type'),(995,456,'_menu_item_menu_item_parent','408'),(996,456,'_menu_item_object_id','447'),(997,456,'_menu_item_object','page'),(998,456,'_menu_item_target',''),(999,456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1000,456,'_menu_item_xfn',''),(1001,456,'_menu_item_url',''),(1003,452,'qode_show-page-title','yes'),(1004,457,'_edit_last','1'),(1005,457,'_edit_lock','1620901201:1'),(1006,457,'_wp_page_template','full_width.php'),(1007,457,'_wpb_vc_js_status','true'),(1008,457,'qode_page_background_image_fixed','yes'),(1009,457,'qode_header-style','light'),(1010,457,'qode_header_color_per_page','#404d56'),(1011,457,'qode_header_color_transparency_per_page','1'),(1012,457,'qode_show-page-title','yes'),(1013,457,'qode_show-sidebar','default'),(1014,459,'_edit_last','1'),(1015,459,'_edit_lock','1620766253:1'),(1016,459,'_wp_page_template','full_width.php'),(1017,459,'_wpb_vc_js_status','true'),(1018,459,'qode_page_background_image_fixed','yes'),(1019,459,'qode_header-style','light'),(1020,459,'qode_header_color_per_page','#404d56'),(1021,459,'qode_header_color_transparency_per_page','1'),(1022,459,'qode_show-sidebar','default'),(1023,462,'_menu_item_type','post_type'),(1024,462,'_menu_item_menu_item_parent','408'),(1025,462,'_menu_item_object_id','459'),(1026,462,'_menu_item_object','page'),(1027,462,'_menu_item_target',''),(1028,462,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1029,462,'_menu_item_xfn',''),(1030,462,'_menu_item_url',''),(1032,463,'_menu_item_type','post_type'),(1033,463,'_menu_item_menu_item_parent','408'),(1034,463,'_menu_item_object_id','457'),(1035,463,'_menu_item_object','page'),(1036,463,'_menu_item_target',''),(1037,463,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1038,463,'_menu_item_xfn',''),(1039,463,'_menu_item_url',''),(1045,467,'_wp_attached_file','2021/04/Thirsk-Lodge-Barns_logoforwebsite.png'),(1046,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:346;s:6:\"height\";i:142;s:4:\"file\";s:45:\"2021/04/Thirsk-Lodge-Barns_logoforwebsite.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_logoforwebsite-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_logoforwebsite-150x142.png\";s:5:\"width\";i:150;s:6:\"height\";i:142;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:{}}}'),(1047,469,'_edit_last','1'),(1048,469,'_wp_page_template','full_width.php'),(1049,469,'_wpb_vc_js_status','true'),(1050,470,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1469198951503{background-color: #f6f6f6 !important;}.vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1051,469,'qode_page_background_image_fixed','yes'),(1052,469,'qode_show-sidebar','default'),(1053,469,'_wpb_shortcodes_custom_css','.vc_custom_1512483421103{padding-top: 108px !important;}'),(1054,469,'_edit_lock','1617915725:1'),(1055,471,'_wpb_shortcodes_custom_css','.vc_custom_1512483421103{padding-top: 108px !important;}'),(1057,474,'_edit_last','1'),(1058,474,'_edit_lock','1620901259:1'),(1059,474,'_wp_page_template','full_width.php'),(1060,474,'_wpb_vc_js_status','false'),(1061,474,'qode_page_background_image_fixed','yes'),(1062,474,'qode_show-sidebar','default'),(1063,477,'_wp_attached_file','2021/04/The-Barns.jpg'),(1064,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1936;s:6:\"height\";i:998;s:4:\"file\";s:21:\"2021/04/The-Barns.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"The-Barns-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"The-Barns-1024x528.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"The-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"The-Barns-768x396.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"The-Barns-1536x792.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:21:\"The-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:21:\"The-Barns-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:21:\"The-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:21:\"The-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:21:\"The-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:21:\"The-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:21:\"The-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:22:\"The-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:21:\"The-Barns-500x998.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:22:\"The-Barns-1000x998.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:21:\"The-Barns-700x361.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:361;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:21:\"The-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1065,481,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1066,481,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1067,482,'_wp_attached_file','2021/04/Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome.jpg'),(1068,482,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1029;s:4:\"file\";s:58:\"2021/04/Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:59:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:59:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-700x900.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:58:\"Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1071,484,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1072,484,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1073,289,'qode_slide-subtitle-font-weight','400'),(1074,289,'qode_slide-subtitle-line-height','40'),(1075,289,'qode_slide-text-line-height','48'),(1076,485,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1077,498,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1078,498,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1080,459,'qode_show-page-title','yes'),(1082,503,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1084,504,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1085,505,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1086,506,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1087,507,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1088,508,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1089,509,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1090,510,'_wpb_shortcodes_custom_css','.vc_custom_1619477529302{padding-right: 40px !important;padding-left: 40px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1091,511,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1092,512,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1093,513,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1094,289,'qode_slide-subtitle-text-transform','uppercase'),(1095,289,'qode_slide-button-label','AVAILABILITY'),(1096,289,'qode_slide-button-link','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/'),(1097,516,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1098,516,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1099,517,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1100,518,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1101,519,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1102,520,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1103,521,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1104,521,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1105,522,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1106,523,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1107,524,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1108,525,'_wp_attached_file','2021/04/Thirsk-Lodge-Barns-_Wedding-Cake.jpg'),(1109,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:4:\"file\";s:44:\"2021/04/Thirsk-Lodge-Barns-_Wedding-Cake.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-_Wedding-Cake-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-_Wedding-Cake-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns-_Wedding-Cake-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-_Wedding-Cake-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-_Wedding-Cake-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns-_Wedding-Cake-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns-_Wedding-Cake-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-_Wedding-Cake-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1110,526,'_wpb_shortcodes_custom_css','.vc_custom_1613132647310{background-color: #ffffff !important;}.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1111,527,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1112,528,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1113,529,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1114,530,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1115,531,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1116,532,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1117,459,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1118,534,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1119,535,'_wp_attached_file','2021/04/Wine-List-Bar.pdf'),(1120,536,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1121,537,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1122,533,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1123,538,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1124,539,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1125,540,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1126,540,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1129,542,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1130,543,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1131,544,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}'),(1132,545,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1133,547,'_wpb_shortcodes_custom_css','.vc_custom_1512568827249{padding-top: 92px !important;}.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1134,548,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1137,447,'qode_enable_content_top_margin','yes'),(1138,559,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1139,403,'qode_enable_content_top_margin','yes'),(1140,560,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1141,561,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1526893414684{margin-top: -36px !important;}'),(1142,562,'_wpb_shortcodes_custom_css','.vc_custom_1526893414684{margin-top: -36px !important;}'),(1143,563,'_wpb_shortcodes_custom_css','.vc_custom_1526893414684{margin-top: -36px !important;}'),(1144,564,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1145,566,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1146,413,'qode_enable_content_top_margin','yes'),(1147,567,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1149,187,'qode_enable_content_top_margin','yes'),(1150,374,'qode_enable_content_top_margin','yes'),(1152,575,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Brides-Balcony.jpg'),(1153,575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:686;s:4:\"file\";s:45:\"2021/05/Thirsk-Lodge-Barns_Brides-Balcony.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-600x686.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Brides-Balcony-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-500x686.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-700x480.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Brides-Balcony-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1154,576,'_wp_attached_file','2021/05/Thirsk-Lodge-Barn-banqueting-hall.jpg'),(1155,576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:690;s:4:\"file\";s:45:\"2021/05/Thirsk-Lodge-Barn-banqueting-hall.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-600x690.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barn-banqueting-hall-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-500x690.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-700x483.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn-banqueting-hall-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1156,578,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_courtyard.jpg'),(1157,578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:696;s:4:\"file\";s:40:\"2021/05/Thirsk-Lodge-Barns_courtyard.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-600x696.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_courtyard-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-500x696.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-700x487.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:40:\"Thirsk-Lodge-Barns_courtyard-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1158,579,'_wp_attached_file','2021/05/Thirsk-Lodge-Barn-VIP-Room.jpg'),(1159,579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:690;s:4:\"file\";s:38:\"2021/05/Thirsk-Lodge-Barn-VIP-Room.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-600x690.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:39:\"Thirsk-Lodge-Barn-VIP-Room-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-500x690.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-700x483.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:38:\"Thirsk-Lodge-Barn-VIP-Room-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1160,580,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_WheelHouse.jpg'),(1161,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:690;s:4:\"file\";s:41:\"2021/05/Thirsk-Lodge-Barns_WheelHouse.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-768x530.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-600x690.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_WheelHouse-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-500x690.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-700x483.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barns_WheelHouse-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1162,582,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Brides-Balcony-1.jpg'),(1163,582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:686;s:4:\"file\";s:47:\"2021/05/Thirsk-Lodge-Barns_Brides-Balcony-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-600x686.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Brides-Balcony-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-500x686.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-700x480.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Brides-Balcony-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1164,584,'_wp_attached_file','2021/05/Thirsk-Lodge-Barn_Food-Drinks.jpg'),(1165,584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:696;s:4:\"file\";s:41:\"2021/05/Thirsk-Lodge-Barn_Food-Drinks.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-600x696.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barn_Food-Drinks-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-500x696.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:696;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-700x487.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:41:\"Thirsk-Lodge-Barn_Food-Drinks-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1168,587,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1169,587,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1170,588,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_wedding-ready.jpg'),(1171,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1029;s:4:\"file\";s:44:\"2021/05/Thirsk-Lodge-Barns_wedding-ready.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_wedding-ready-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_wedding-ready-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_wedding-ready-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-700x900.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_wedding-ready-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1172,589,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1173,589,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1174,590,'_wp_attached_file','2021/05/EVENTS_Thirsk-Lodge-Barns.jpg'),(1175,590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:37:\"2021/05/EVENTS_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:38:\"EVENTS_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:37:\"EVENTS_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1176,591,'_wp_attached_file','2021/05/WeddingsTab_Thirsk-Lodge-Barns.jpg'),(1177,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:42:\"2021/05/WeddingsTab_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:43:\"WeddingsTab_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:42:\"WeddingsTab_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1178,592,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1179,592,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1180,593,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1181,593,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1182,65,'_edit_lock','1620133244:1'),(1183,65,'_edit_last','1'),(1184,65,'rs_page_bg_color',''),(1185,66,'_edit_lock','1620133285:1'),(1186,66,'_edit_last','1'),(1187,66,'rs_page_bg_color',''),(1188,67,'_edit_lock','1620135047:1'),(1189,67,'_edit_last','1'),(1190,67,'rs_page_bg_color',''),(1191,596,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1192,597,'_wp_attached_file','2021/05/Wine-List-Bar.pdf'),(1193,598,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1194,599,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1195,600,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1196,601,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1197,602,'_wp_attached_file','2021/05/Thirsk-Lodge-Barn_Food.jpg'),(1198,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:692;s:6:\"height\";i:695;s:4:\"file\";s:34:\"2021/05/Thirsk-Lodge-Barn_Food.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-600x695.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-692x600.jpg\";s:5:\"width\";i:692;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-692x500.jpg\";s:5:\"width\";i:692;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-500x695.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:34:\"Thirsk-Lodge-Barn_Food-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1199,603,'_wp_attached_file','2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg'),(1200,603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:692;s:6:\"height\";i:695;s:4:\"file\";s:45:\"2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-600x695.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-692x600.jpg\";s:5:\"width\";i:692;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-692x500.jpg\";s:5:\"width\";i:692;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-500x695.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barn_Food-Drinks_Bar-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1201,604,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}'),(1202,605,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1203,605,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1205,606,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522695779{padding-top: 34px !important;}.vc_custom_1619522849698{padding-top: 34px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1207,608,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1208,608,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1209,609,'_wp_attached_file','2021/05/Weddings-and-Thirsk-LodgeBarn.jpg'),(1210,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1249;s:4:\"file\";s:41:\"2021/05/Weddings-and-Thirsk-LodgeBarn.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Weddings-and-Thirsk-LodgeBarn-1024x666.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:666;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-768x500.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"Weddings-and-Thirsk-LodgeBarn-1536x999.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:999;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:42:\"Weddings-and-Thirsk-LodgeBarn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:42:\"Weddings-and-Thirsk-LodgeBarn-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:43:\"Weddings-and-Thirsk-LodgeBarn-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-700x455.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:41:\"Weddings-and-Thirsk-LodgeBarn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1211,610,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1212,610,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1213,611,'_edit_last','1'),(1214,611,'_edit_lock','1620332689:1'),(1215,611,'_wp_page_template','default'),(1216,611,'_wpb_vc_js_status','false'),(1217,612,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}'),(1218,611,'qode_page_background_image_fixed','yes'),(1219,611,'qode_show-sidebar','default'),(1220,611,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}'),(1221,613,'_wpb_shortcodes_custom_css','.vc_custom_1526893414684{margin-top: -36px !important;}'),(1223,615,'_wp_attached_file','2021/05/The-Barns_Thirks-Lodge-Barns.jpg'),(1224,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:40:\"2021/05/The-Barns_Thirks-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:41:\"The-Barns_Thirks-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:40:\"The-Barns_Thirks-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1225,616,'_wp_attached_file','2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg'),(1226,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:51:\"2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:52:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:51:\"Wedding-Breakfast-at-Thirks-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1227,617,'_wpb_shortcodes_custom_css','.vc_custom_1526893414684{margin-top: -36px !important;}'),(1228,618,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1229,618,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1230,619,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1231,619,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1232,620,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1233,620,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1236,623,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620299981379{margin-right: 4% !important;margin-left: 4px !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1238,624,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1239,625,'_wpb_shortcodes_custom_css','.vc_custom_1526893414684{margin-top: -36px !important;}'),(1240,626,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Accommodation.jpg'),(1241,626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:44:\"2021/05/Thirsk-Lodge-Barns_Accommodation.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:45:\"Thirsk-Lodge-Barns_Accommodation-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Accommodation-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:70:\"Copyright (c) 2017 WorldWide/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1242,627,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1243,628,'_wp_attached_file','2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg'),(1244,628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:42:\"2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:43:\"Food-Drinks_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:42:\"Food-Drinks_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1245,630,'_wp_attached_file','2021/05/Whats-Included_Thirsk-Lodge-Barns.jpg'),(1246,630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:45:\"2021/05/Whats-Included_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:46:\"Whats-Included_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:45:\"Whats-Included_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1247,631,'_wp_attached_file','2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg'),(1248,631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:44:\"2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:45:\"Food-Drinks_Thirsk-Lodge-Barns-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Food-Drinks_Thirsk-Lodge-Barns-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1249,632,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1250,633,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1252,634,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1253,635,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1255,637,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}'),(1256,641,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1257,642,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1258,643,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1259,644,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1260,645,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1261,647,'_wp_attached_file','2021/05/Planning-your-Wedding-at-Thirsk-Lodge-Barns.jpg'),(1262,647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:55:\"2021/05/Planning-your-Wedding-at-Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:56:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:56:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-700x700.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:55:\"Planning-your-Wedding-at-Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1263,648,'_wp_attached_file','2021/05/Whats-Included_Thirsk-Lodge-Barns-1.jpg'),(1264,648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:667;s:6:\"height\";i:667;s:4:\"file\";s:47:\"2021/05/Whats-Included_Thirsk-Lodge-Barns-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-667x600.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-667x500.jpg\";s:5:\"width\";i:667;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Whats-Included_Thirsk-Lodge-Barns-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1265,650,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1266,651,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1267,653,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1268,660,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1273,662,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1274,663,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1276,665,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1277,666,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}'),(1278,452,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1279,614,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1280,667,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1281,668,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1282,457,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620765143367{padding-top: 0px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1284,669,'_wpb_shortcodes_custom_css','.vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620305220196{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1285,670,'_wpb_shortcodes_custom_css','.vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620305296305{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1286,671,'_wpb_shortcodes_custom_css','.vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620305313911{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1287,672,'_wpb_shortcodes_custom_css','.vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620305354881{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1288,6,'_edit_lock','1620332189:1'),(1289,6,'_wpb_vc_js_status','false'),(1290,6,'_wp_trash_meta_status','publish'),(1291,6,'_wp_trash_meta_time','1620332339'),(1292,6,'_wp_desired_post_slug','about'),(1293,675,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620305354881{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1294,5,'_edit_lock','1620336422:1'),(1295,5,'_edit_last','1'),(1296,5,'_wp_page_template','default'),(1297,5,'_wpb_vc_js_status','false'),(1298,5,'qode_page_background_image_fixed','yes'),(1299,5,'qode_show-sidebar','default'),(1300,680,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1301,681,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1302,200,'rs_page_bg_color',''),(1303,611,'rs_page_bg_color',''),(1304,349,'rs_page_bg_color',''),(1305,303,'rs_page_bg_color',''),(1306,5,'rs_page_bg_color',''),(1307,130,'rs_page_bg_color',''),(1308,431,'rs_page_bg_color',''),(1309,685,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1312,687,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1313,687,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1314,688,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1316,690,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1318,692,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1319,694,'_wp_attached_file','2021/05/LettyWill-VIP-Room_Thirsk-Lodge-barns.jpg'),(1320,694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:49:\"2021/05/LettyWill-VIP-Room_Thirsk-Lodge-barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"LettyWill-VIP-Room_Thirsk-Lodge-barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:22:\"Andy Hirst Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1321,696,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1322,698,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1324,374,'qode_margin_after_title','30'),(1325,457,'qode_margin_after_title','30'),(1326,701,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1327,702,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1328,703,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1329,704,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1330,705,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1331,706,'_wpb_shortcodes_custom_css','.vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1332,707,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1333,708,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1334,709,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1335,710,'_edit_last','1'),(1336,710,'_edit_lock','1620901247:1'),(1337,710,'_wp_page_template','default'),(1338,710,'_wpb_vc_js_status','true'),(1339,711,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1340,710,'qode_page_background_image_fixed','yes'),(1341,710,'qode_show-sidebar','default'),(1342,710,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1343,712,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1620305354881{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1344,713,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1345,714,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1346,715,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1347,440,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1348,716,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1349,717,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1351,408,'_wp_old_date','2021-03-30'),(1352,456,'_wp_old_date','2021-03-30'),(1353,454,'_wp_old_date','2021-03-30'),(1354,462,'_wp_old_date','2021-03-30'),(1355,463,'_wp_old_date','2021-03-30'),(1356,417,'_wp_old_date','2021-03-30'),(1357,445,'_wp_old_date','2021-03-30'),(1358,444,'_wp_old_date','2021-03-30'),(1359,442,'_wp_old_date','2021-03-30'),(1360,443,'_wp_old_date','2021-03-30'),(1362,275,'_wp_old_date','2021-03-30'),(1363,376,'_wp_old_date','2021-03-30'),(1364,274,'_wp_old_date','2021-03-30'),(1365,718,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1366,719,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1367,720,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1368,722,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1369,435,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1370,723,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1371,724,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1372,725,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1374,728,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1375,729,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1377,730,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1616227214341{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1378,731,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337597561{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620337617103{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1379,440,'qode_margin_after_title','30'),(1380,732,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337597561{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1381,733,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1382,437,'qode_margin_after_title','30'),(1383,737,'_wp_attached_file','2021/05/Wreath-Making-Workshop_Thirsk-Lodge-Barn.jpg'),(1384,737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:52:\"2021/05/Wreath-Making-Workshop_Thirsk-Lodge-Barn.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:53:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:52:\"Wreath-Making-Workshop_Thirsk-Lodge-Barn-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:78:\"Copyright (c) 2019 Bogdan Sonjachnyj/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1385,738,'_wp_attached_file','2021/05/Santas-Grotto_Thirsk-Lodge-Barns.jpg'),(1386,738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:44:\"2021/05/Santas-Grotto_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:45:\"Santas-Grotto_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:44:\"Santas-Grotto_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:74:\"Copyright (c) 2017 Romolo Tavani/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1387,739,'_wp_attached_file','2021/05/Christmas-Market_Thirsk-Lodge-Barns.jpg'),(1388,739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:47:\"2021/05/Christmas-Market_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:48:\"Christmas-Market_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Christmas-Market_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1389,741,'_wp_attached_file','2021/05/stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313.jpg'),(1390,741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:867;s:6:\"height\";i:1002;s:4:\"file\";s:127:\"2021/05/stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-260x300.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-768x888.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:888;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-867x500.jpg\";s:5:\"width\";i:867;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:128:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:128:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-867x1000.jpg\";s:5:\"width\";i:867;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-700x809.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:809;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:127:\"stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1391,743,'_wp_attached_file','2021/05/Business-Events_Thirsk-Lodge-Barns.jpg'),(1392,743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:46:\"2021/05/Business-Events_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Business-Events_Thirsk-Lodge-Barns-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"Business-Events_Thirsk-Lodge-Barns-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Business-Events_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Business-Events_Thirsk-Lodge-Barns-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Business-Events_Thirsk-Lodge-Barns-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:46:\"Business-Events_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:73:\"Copyright (c) 2016 Rawpixel.com/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1393,744,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1394,742,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1395,745,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1396,746,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1397,747,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1398,747,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1399,748,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1401,750,'_wp_attached_file','2021/05/Private-Event_Thirslk-Lodge-Barns.jpg'),(1402,750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:31;s:4:\"file\";s:45:\"2021/05/Private-Event_Thirslk-Lodge-Barns.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1403,751,'_wp_attached_file','2021/05/Public-Event_Thirsk-Lodge-Barns.jpg'),(1404,751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:31;s:4:\"file\";s:43:\"2021/05/Public-Event_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1406,408,'_wp_old_date','2021-05-06'),(1407,456,'_wp_old_date','2021-05-06'),(1408,454,'_wp_old_date','2021-05-06'),(1409,462,'_wp_old_date','2021-05-06'),(1410,463,'_wp_old_date','2021-05-06'),(1411,417,'_wp_old_date','2021-05-06'),(1412,445,'_wp_old_date','2021-05-06'),(1413,444,'_wp_old_date','2021-05-06'),(1414,442,'_wp_old_date','2021-05-06'),(1415,443,'_wp_old_date','2021-05-06'),(1417,275,'_wp_old_date','2021-05-06'),(1418,274,'_wp_old_date','2021-05-06'),(1419,376,'_wp_old_date','2021-05-06'),(1420,756,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1421,758,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512644404944{padding-top: 53px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1422,759,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1423,760,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1424,761,'_wp_trash_meta_status','publish'),(1425,761,'_wp_trash_meta_time','1620382182'),(1426,762,'_wp_trash_meta_status','publish'),(1427,762,'_wp_trash_meta_time','1620382262'),(1428,763,'_wp_trash_meta_status','publish'),(1429,763,'_wp_trash_meta_time','1620382285'),(1430,764,'_wp_trash_meta_status','publish'),(1431,764,'_wp_trash_meta_time','1620382309'),(1432,765,'_edit_lock','1620382335:1'),(1433,765,'_wp_trash_meta_status','publish'),(1434,765,'_wp_trash_meta_time','1620382361'),(1435,766,'_wp_attached_file','2021/05/TLB-logo.png'),(1436,766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:96;s:4:\"file\";s:20:\"2021/05/TLB-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"TLB-logo-150x96.png\";s:5:\"width\";i:150;s:6:\"height\";i:96;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:{}}}'),(1437,767,'_wp_attached_file','2021/05/TLB-logoweb.png'),(1438,767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:96;s:4:\"file\";s:23:\"2021/05/TLB-logoweb.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"TLB-logoweb-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"TLB-logoweb-150x96.png\";s:5:\"width\";i:150;s:6:\"height\";i:96;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:{}}}'),(1439,768,'_wp_attached_file','2021/05/TLB-Bird-logo.png'),(1440,768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:213;s:4:\"file\";s:25:\"2021/05/TLB-Bird-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"TLB-Bird-logo-120x150.png\";s:5:\"width\";i:120;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:25:\"TLB-Bird-logo-120x198.png\";s:5:\"width\";i:120;s:6:\"height\";i:198;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:{}}}'),(1441,769,'_wp_attached_file','2021/05/Favicon-Thirsk-Lodge-Barns.png'),(1442,769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:38:\"2021/05/Favicon-Thirsk-Lodge-Barns.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1446,772,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1447,773,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1448,773,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1449,774,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1450,774,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1451,775,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1452,776,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1453,777,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1454,778,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1455,771,'_customize_restore_dismissed','1'),(1456,779,'_wp_trash_meta_status','publish'),(1457,779,'_wp_trash_meta_time','1620406799'),(1458,780,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1459,781,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1460,433,'qode_margin_after_title','30'),(1461,783,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1463,784,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}'),(1464,785,'_wpb_shortcodes_custom_css','.vc_custom_1512723181048{padding-top: 34px !important;}'),(1465,786,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1466,787,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1467,788,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1468,789,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1469,790,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1470,794,'_wp_attached_file','2021/05/pin.png'),(1471,794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:39;s:6:\"height\";i:42;s:4:\"file\";s:15:\"2021/05/pin.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1472,795,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1473,796,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1474,797,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1475,798,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1476,799,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1477,800,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1478,801,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1479,802,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg'),(1480,802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:48:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-207-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-207-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-207-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-207-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-207-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-207-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1481,804,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg'),(1482,804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:47:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-20-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-20-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-20-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-20-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-20-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-20-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1483,805,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg'),(1484,805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:47:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-72-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-72-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1485,806,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1486,806,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1489,807,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-209.jpg'),(1490,807,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:48:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-209.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-209-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-209-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-209-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-209-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-209-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-209-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1491,808,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1492,808,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1495,757,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1496,810,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg'),(1497,810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1199;s:4:\"file\";s:47:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-21-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-21-768x1151.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-21-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-21-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-21-700x1049.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1049;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-21-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1498,811,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1499,811,'_wpb_shortcodes_custom_css','.vc_custom_1512559501091{padding-top: 152px !important;}.vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1500,812,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-232.jpg'),(1501,812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-232.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-232-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-232-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-232-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-232-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-232-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-232-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1502,813,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1503,814,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg'),(1504,814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:47:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-30-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-30-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-30-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-30-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-30-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-30-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1505,815,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-28.jpg'),(1506,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:47:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-28.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-28-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-28-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-28-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-28-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-28-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-28-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1507,816,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1508,817,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1509,818,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1510,819,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg'),(1511,819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:56:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:57:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:56:\"Thirsk-Lodge-Barns_Wedding-venue-209-Gallery-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1512,820,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1513,821,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Food-Events.jpg'),(1514,821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:42:\"2021/05/Thirsk-Lodge-Barns_Food-Events.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns_Food-Events-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Food-Events-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns_Food-Events-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns_Food-Events-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns_Food-Events-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Food-Events-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1515,822,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1516,823,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1517,824,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1518,826,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1519,827,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Accommodation-1.jpg'),(1520,827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:46:\"2021/05/Thirsk-Lodge-Barns_Accommodation-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Accommodation-1-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Accommodation-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-800x500.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Accommodation-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Accommodation-1-800x1000.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Accommodation-1-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Accommodation-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1521,828,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1522,829,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1524,830,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Private-Hire-71.jpg'),(1525,830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:46:\"2021/05/Thirsk-Lodge-Barns_Private-Hire-71.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Private-Hire-71-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Private-Hire-71-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1526,831,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1527,832,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Private-Hire-71-1.jpg'),(1528,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:48:\"2021/05/Thirsk-Lodge-Barns_Private-Hire-71-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Private-Hire-71-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Private-Hire-71-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Private-Hire-71-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Private-Hire-71-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Private-Hire-71-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Private-Hire-71-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1529,833,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1531,836,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Courtyard-1.jpg'),(1532,836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:42:\"2021/05/Thirsk-Lodge-Barns_Courtyard-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns_Courtyard-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns_Courtyard-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1533,839,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-Venue_127.jpg'),(1534,839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:48:\"2021/05/Thirsk-Lodge-Barns_Wedding-Venue_127.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_127-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_127-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_127-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_127-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-Venue_127-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_127-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_127-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1535,840,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-Venue_199.jpg'),(1536,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:48:\"2021/05/Thirsk-Lodge-Barns_Wedding-Venue_199.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_199-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_199-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_199-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_199-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-Venue_199-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-Venue_199-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-Venue_199-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1537,841,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-3.jpg'),(1538,841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:46:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-3.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-3-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-3-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-3-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-3-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-3-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-3-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-3-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1539,842,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-7.jpg'),(1540,842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1500;s:4:\"file\";s:46:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-7.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-7-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-7-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-7-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-7-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:48:\"Thirsk-Lodge-Barns_Wedding-venue-7-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:47:\"Thirsk-Lodge-Barns_Wedding-venue-7-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:46:\"Thirsk-Lodge-Barns_Wedding-venue-7-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1541,843,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg'),(1542,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:49:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"Thirsk-Lodge-Barns_Wedding-venue-72-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1543,847,'_wp_trash_meta_status','publish'),(1544,847,'_wp_trash_meta_time','1620685904'),(1545,849,'_wp_attached_file','2021/05/©GeorginaHarrisonPhotography-TBL-232.jpg'),(1546,849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:49:\"2021/05/©GeorginaHarrisonPhotography-TBL-232.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-232-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-232-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-232-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-232-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"Georgina Harrison Photography\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:18:\"Thirsk Lodge Barns\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1547,848,'_edit_last','1'),(1548,848,'_edit_lock','1620765853:1'),(1549,848,'qode_slide-background-type','image'),(1550,848,'qode_slide-image','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-209.jpg'),(1551,848,'qode_enable_image_animation','no'),(1552,848,'qode_enable_image_animation_type','zoom_center'),(1553,848,'qode_slide-thumbnail-animation','flip'),(1554,848,'qode_slide-content-animation','all_at_once'),(1555,848,'qode_slide-title-font-family','-1'),(1556,848,'qode_slide-separator-after-title','no'),(1557,848,'qode_slide_separator_gradient','no'),(1558,848,'qode_slide-border-around-title','no'),(1559,848,'qode_slide-subtitle-position','above_title'),(1560,848,'qode_slide-subtitle-font-family','-1'),(1561,848,'qode_slide-text-font-family','-1'),(1562,848,'qode_slide_svg_drawing','no'),(1563,848,'qode_slide_button_type','qode-button'),(1564,848,'qode_slide-button-hover-type','default'),(1565,848,'qode_slide_button_v2_icon_gradient','no'),(1566,848,'qode_slide_button1_icon_pack','no_icon'),(1567,848,'qode_slide_button_type2','qode-button'),(1568,848,'qode_slide-button-hover-type2','default'),(1569,848,'qode_slide_button2_v2_icon_gradient','no'),(1570,848,'qode_slide_button2_icon_pack','no_icon'),(1571,848,'qode_slide-separate-text-graphic','no'),(1572,848,'qode_slide-content-vertical-middle','no'),(1573,848,'qode_slide_vertical_content_full_width','no'),(1574,848,'qode_slide_general_animation','yes'),(1575,848,'qode_slide_title_animation_scroll','no'),(1576,848,'qode_slide_subtitle_animation_scroll','no'),(1577,848,'qode_slide_graphic_animation_scroll','no'),(1578,848,'qode_slide_text_animation_scroll','no'),(1579,848,'qode_slide_button1_animation_scroll','no'),(1580,848,'qode_slide_button2_animation_scroll','no'),(1581,848,'qode_slide_separator_bottom_animation_scroll','no'),(1582,848,'qode_slide_svg_animation_scroll','no'),(1583,848,'rs_page_bg_color',''),(1584,848,'qode_slide-overlay-image','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Overlay.png'),(1585,848,'qode_slide-title-color','#ffffff'),(1586,848,'qode_slide-title-font-size','90'),(1587,848,'qode_slide-button-label','FIND OUT MORE'),(1588,848,'qode_slide-button-link','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/'),(1589,848,'qode_slide-content-alignment','center'),(1590,848,'qode_slide-content-width','98'),(1591,848,'qode_slide-content-top','38'),(1592,848,'qode_slide-content-left','1'),(1593,851,'_wp_attached_file','2021/05/©GeorginaHarrisonPhotography-TBL-209.jpg'),(1594,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:49:\"2021/05/©GeorginaHarrisonPhotography-TBL-209.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-209-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-209-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-209-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-209-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-209-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-209-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"Georgina Harrison Photography\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:18:\"Thirsk Lodge Barns\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1595,852,'_edit_last','1'),(1596,852,'_edit_lock','1620765886:1'),(1597,853,'_wp_attached_file','2021/05/©GeorginaHarrisonPhotography-TBL-225.jpg'),(1598,853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:4:\"file\";s:49:\"2021/05/©GeorginaHarrisonPhotography-TBL-225.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-225-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-225-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-225-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-225-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-225-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-225-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-225-700x1050.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:1050;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-225-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"Georgina Harrison Photography\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:18:\"Thirsk Lodge Barns\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1599,854,'_wp_attached_file','2021/05/©GeorginaHarrisonPhotography-TBL-72.jpg'),(1600,854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:48:\"2021/05/©GeorginaHarrisonPhotography-TBL-72.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-72-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-72-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-72-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"©GeorginaHarrisonPhotography-TBL-72-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:50:\"©GeorginaHarrisonPhotography-TBL-72-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"©GeorginaHarrisonPhotography-TBL-72-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"Georgina Harrison Photography\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:18:\"Thirsk Lodge Barns\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1601,852,'qode_slide-background-type','image'),(1602,852,'qode_slide-image','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-72.jpg'),(1603,852,'qode_enable_image_animation','no'),(1604,852,'qode_enable_image_animation_type','zoom_center'),(1605,852,'qode_slide-thumbnail-animation','flip'),(1606,852,'qode_slide-content-animation','all_at_once'),(1607,852,'qode_slide-title-color','#ffffff'),(1608,852,'qode_slide-title-font-size','90'),(1609,852,'qode_slide-title-font-family','-1'),(1610,852,'qode_slide-separator-after-title','no'),(1611,852,'qode_slide_separator_gradient','no'),(1612,852,'qode_slide-border-around-title','no'),(1613,852,'qode_slide-subtitle-position','above_title'),(1614,852,'qode_slide-subtitle-font-family','-1'),(1615,852,'qode_slide-text-font-family','-1'),(1616,852,'qode_slide_svg_drawing','no'),(1617,852,'qode_slide-button-label','OUR EVENTS'),(1618,852,'qode_slide-button-link','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/'),(1619,852,'qode_slide_button_type','qode-button'),(1620,852,'qode_slide-button-hover-type','default'),(1621,852,'qode_slide_button_v2_icon_gradient','no'),(1622,852,'qode_slide_button1_icon_pack','no_icon'),(1623,852,'qode_slide_button_type2','qode-button'),(1624,852,'qode_slide-button-hover-type2','default'),(1625,852,'qode_slide_button2_v2_icon_gradient','no'),(1626,852,'qode_slide_button2_icon_pack','no_icon'),(1627,852,'qode_slide-content-alignment','center'),(1628,852,'qode_slide-separate-text-graphic','no'),(1629,852,'qode_slide-content-vertical-middle','no'),(1630,852,'qode_slide_vertical_content_full_width','no'),(1631,852,'qode_slide-content-width','98'),(1632,852,'qode_slide-content-top','38'),(1633,852,'qode_slide-content-left','1'),(1634,852,'qode_slide_general_animation','yes'),(1635,852,'qode_slide_title_animation_scroll','no'),(1636,852,'qode_slide_subtitle_animation_scroll','no'),(1637,852,'qode_slide_graphic_animation_scroll','no'),(1638,852,'qode_slide_text_animation_scroll','no'),(1639,852,'qode_slide_button1_animation_scroll','no'),(1640,852,'qode_slide_button2_animation_scroll','no'),(1641,852,'qode_slide_separator_bottom_animation_scroll','no'),(1642,852,'qode_slide_svg_animation_scroll','no'),(1643,852,'rs_page_bg_color',''),(1644,855,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1645,855,'_wpb_shortcodes_custom_css','.vc_custom_1620687043971{padding-top: 4% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1646,857,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1647,857,'_wpb_shortcodes_custom_css','.vc_custom_1620687043971{padding-top: 4% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1648,858,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1649,858,'_wpb_shortcodes_custom_css','.vc_custom_1620687043971{padding-top: 4% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1650,848,'qode_slide-hide-shadow','yes'),(1651,852,'qode_slide-hide-shadow','yes'),(1652,859,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1653,859,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1654,860,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1655,863,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1656,875,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}'),(1657,433,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1658,876,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727796468{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1660,877,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1661,881,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1662,882,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1663,408,'_wp_old_date','2021-05-07'),(1664,456,'_wp_old_date','2021-05-07'),(1665,454,'_wp_old_date','2021-05-07'),(1666,462,'_wp_old_date','2021-05-07'),(1667,463,'_wp_old_date','2021-05-07'),(1668,417,'_wp_old_date','2021-05-07'),(1669,445,'_wp_old_date','2021-05-07'),(1670,444,'_wp_old_date','2021-05-07'),(1671,442,'_wp_old_date','2021-05-07'),(1672,443,'_wp_old_date','2021-05-07'),(1673,275,'_wp_old_date','2021-05-07'),(1674,274,'_wp_old_date','2021-05-07'),(1675,376,'_wp_old_date','2021-05-07'),(1676,883,'_wp_attached_file','2021/05/UNVEILED-MemberBadge-Photo.png'),(1677,883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2480;s:6:\"height\";i:2480;s:4:\"file\";s:38:\"2021/05/UNVEILED-MemberBadge-Photo.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"UNVEILED-MemberBadge-Photo-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"UNVEILED-MemberBadge-Photo-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"UNVEILED-MemberBadge-Photo-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-570x570.png\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-600x800.png\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-800x600.png\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:39:\"UNVEILED-MemberBadge-Photo-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:39:\"UNVEILED-MemberBadge-Photo-500x1000.png\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:40:\"UNVEILED-MemberBadge-Photo-1000x1000.png\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-700x700.png\";s:5:\"width\";i:700;s:6:\"height\";i:700;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:38:\"UNVEILED-MemberBadge-Photo-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1678,884,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1679,884,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1680,885,'_wp_attached_file','2021/05/coco-member-500.png'),(1681,885,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:507;s:4:\"file\";s:27:\"2021/05/coco-member-500.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"coco-member-500-296x300.png\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"coco-member-500-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:27:\"coco-member-500-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:27:\"coco-member-500-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:27:\"coco-member-500-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:27:\"coco-member-500-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:27:\"coco-member-500-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:27:\"coco-member-500-500x303.png\";s:5:\"width\";i:500;s:6:\"height\";i:303;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:{}}}'),(1682,886,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1683,886,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(1684,887,'_wpb_shortcodes_custom_css','.vc_custom_1620733676168{margin-right: 10% !important;}'),(1687,892,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1688,893,'_wp_attached_file','2021/05/©GeorginaHarrisonPhotography-TBL-232-1.jpg'),(1689,893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:51:\"2021/05/©GeorginaHarrisonPhotography-TBL-232-1.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"©GeorginaHarrisonPhotography-TBL-232-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:53:\"©GeorginaHarrisonPhotography-TBL-232-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:52:\"©GeorginaHarrisonPhotography-TBL-232-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:52:\"©GeorginaHarrisonPhotography-TBL-232-1-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:53:\"©GeorginaHarrisonPhotography-TBL-232-1-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:51:\"©GeorginaHarrisonPhotography-TBL-232-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"Georgina Harrison Photography\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:18:\"Thirsk Lodge Barns\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1690,894,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1691,895,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1692,896,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1693,897,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1694,898,'_wp_attached_file','2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg'),(1695,898,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:48:\"2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:49:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:48:\"BBQ-AT-THE-BARNS-WITH-BLUES-CATERING-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:23:\"KIERAN PAUL PHOTOGRAPHY\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1696,899,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727796468{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1697,900,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1698,901,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736170273{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1699,902,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736211120{margin-right: 10% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1700,903,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736291570{margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1701,904,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1702,905,'_wp_attached_file','2021/05/Blues-Catering-Game-Lunch.jpg'),(1703,905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:37:\"2021/05/Blues-Catering-Game-Lunch.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:38:\"Blues-Catering-Game-Lunch-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:37:\"Blues-Catering-Game-Lunch-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1704,906,'_wp_attached_file','2021/05/sushi-night_Thirsk-lodge-Barns.jpg'),(1705,906,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:42:\"2021/05/sushi-night_Thirsk-lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:43:\"sushi-night_Thirsk-lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:42:\"sushi-night_Thirsk-lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1706,907,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1707,908,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1708,909,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1709,910,'_wp_attached_file','2021/05/Open-Day_Thirsk-Lodge-Barns.jpg'),(1710,910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:39:\"2021/05/Open-Day_Thirsk-Lodge-Barns.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:40:\"Open-Day_Thirsk-Lodge-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:39:\"Open-Day_Thirsk-Lodge-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1711,911,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1712,912,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1713,913,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1714,917,'_wp_attached_file','2021/05/ANNA-MARTOLA.jpg'),(1715,917,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:24:\"2021/05/ANNA-MARTOLA.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:25:\"ANNA-MARTOLA-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:24:\"ANNA-MARTOLA-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1716,922,'_wp_attached_file','2021/05/Christmas-Market_Thirsk-Lodge-Barns-1.jpg'),(1717,922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:49:\"2021/05/Christmas-Market_Thirsk-Lodge-Barns-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-600x667.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:50:\"Christmas-Market_Thirsk-Lodge-Barns-1-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-500x667.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-700x467.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:49:\"Christmas-Market_Thirsk-Lodge-Barns-1-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:13:\"Rowan Charles\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1718,926,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1719,927,'_wpb_shortcodes_custom_css','.vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}'),(1720,928,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1721,929,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1722,933,'_wp_attached_file','2021/05/Thirsk-lodge-Barns_Closed-icon.jpg'),(1723,933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:31;s:4:\"file\";s:42:\"2021/05/Thirsk-lodge-Barns_Closed-icon.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1724,935,'_wpb_shortcodes_custom_css','.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1725,937,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns_Wedding-venue-Barns.jpg'),(1726,937,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1200;s:4:\"file\";s:50:\"2021/05/Thirsk-Lodge-Barns_Wedding-venue-Barns.jpg\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-1024x600.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-768x450.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-1536x900.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-570x570.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-800x600.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-345x198.jpg\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-400x260.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-500x380.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-1000x500.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:51:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-500x1000.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:52:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-1000x1000.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-700x410.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:50:\"Thirsk-Lodge-Barns_Wedding-venue-Barns-539x303.jpg\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:29:\"Georgina Harrison Photography\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1727,938,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1728,940,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1729,941,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1730,942,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1731,942,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(1732,943,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1733,944,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1734,945,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1735,946,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1737,948,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1512562485256{padding-top: 126px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1738,949,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620765143367{padding-top: 0px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1739,950,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620765143367{padding-top: 0px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1740,951,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1741,952,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}.vc_custom_1512723181048{padding-top: 34px !important;}'),(1742,437,'_yoast_wpseo_content_score','90'),(1743,437,'_yoast_wpseo_estimated-reading-time-minutes','2'),(1744,954,'_wp_attached_file','2021/05/thirsk-lodge-barns-on-Hitched.jpg'),(1745,954,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:109;s:6:\"height\";i:109;s:4:\"file\";s:41:\"2021/05/thirsk-lodge-barns-on-Hitched.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1746,955,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1747,955,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(1748,271,'_yoast_wpseo_content_score','60'),(1749,271,'_yoast_wpseo_estimated-reading-time-minutes','2'),(1752,956,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1753,956,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(1754,957,'_wp_attached_file','2021/05/thirsk-lodge-barns-on-Hitched-1.jpg'),(1755,957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:150;s:4:\"file\";s:43:\"2021/05/thirsk-lodge-barns-on-Hitched-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1756,958,'_wpb_post_custom_css','.q_team .q_team_title_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .q_team_social_holder{\r\ntext-align: left;\r\n}\r\n\r\n.q_team .separator.small{\r\nmargin-left: 0;\r\nwidth: 66px;\r\nheight: 1px; \r\n}\r\n\r\n.q_team .q_team_text{\r\npadding-left: 0;\r\n}\r\n\r\n.q_team .q_team_title_holder span{\r\nfont-family: \'Lato\', sans-serif;\r\nfont-size: 12px;\r\nline-height: 30px;\r\nletter-spacing: 1px;\r\nfont-weight: 400;\r\n}\r\n\r\n.qode-cards-holder .qode-type1-gradient-bottom-to-top-text span{\r\nbackground: transparent;\r\n-webkit-text-fill-color: #000;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.prev{\r\n    left: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button.next{\r\n    right: -135px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button{\r\n    height: 98px;\r\n    width: 98px;\r\n}\r\n\r\n.qode-card-slider-holder .controls .button span{\r\n    height: 98px;\r\n    width: 98px;\r\n    line-height: 98px;\r\n    font-size: 42px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav{\r\nmargin-top: 0;\r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-top: 19px; \r\n}\r\n\r\n.testimonials_c_holder .testimonial_content_inner{\r\npadding-bottom: 40px;\r\n}\r\n\r\n.testimonials_c_holder .flex-control-nav li{\r\nmargin: 0 8.5px;\r\n}\r\n.qode-cards-holder a.qode-type1-gradient-bottom-to-top-text:hover span{\r\n-webkit-text-fill-color: #d79d59;\r\n}'),(1757,958,'_wpb_shortcodes_custom_css','.vc_custom_1620687438932{padding-top: 8% !important;}.vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}.vc_custom_1512483421103{padding-top: 108px !important;}'),(1760,960,'_edit_last','1'),(1761,960,'_edit_lock','1620901252:1'),(1762,960,'_wp_page_template','default'),(1763,960,'_wpb_vc_js_status','false'),(1764,960,'_yoast_wpseo_content_score','30'),(1765,960,'_yoast_wpseo_estimated-reading-time-minutes',''),(1766,960,'qode_page_background_image_fixed','yes'),(1767,960,'qode_show-sidebar','default'),(1768,962,'_wpb_shortcodes_custom_css','.vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}'),(1769,403,'_yoast_wpseo_content_score','90'),(1770,403,'_yoast_wpseo_estimated-reading-time-minutes',''),(1771,963,'_wpb_shortcodes_custom_css','.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1772,452,'_yoast_wpseo_content_score','60'),(1773,452,'_yoast_wpseo_estimated-reading-time-minutes',''),(1774,964,'_wpb_shortcodes_custom_css','.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1619522633058{background-color: #ffffff !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1775,459,'_yoast_wpseo_content_score','60'),(1776,459,'_yoast_wpseo_estimated-reading-time-minutes',''),(1777,965,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620765143367{padding-top: 0px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1778,457,'_yoast_wpseo_content_score','90'),(1779,457,'_yoast_wpseo_estimated-reading-time-minutes',''),(1780,966,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1781,164,'_yoast_wpseo_content_score','90'),(1782,164,'_yoast_wpseo_estimated-reading-time-minutes',''),(1784,968,'_edit_lock','1620766918:1'),(1785,968,'_wp_trash_meta_status','publish'),(1786,968,'_wp_trash_meta_time','1620766946'),(1787,969,'_wp_trash_meta_status','publish'),(1788,969,'_wp_trash_meta_time','1620767018'),(1789,970,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns-Logo.png'),(1790,970,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:226;s:4:\"file\";s:35:\"2021/05/Thirsk-Lodge-Barns-Logo.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-570x226.png\";s:5:\"width\";i:570;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-600x226.png\";s:5:\"width\";i:600;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-400x226.png\";s:5:\"width\";i:400;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-500x226.png\";s:5:\"width\";i:500;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-500x226.png\";s:5:\"width\";i:500;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-500x226.png\";s:5:\"width\";i:500;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:35:\"Thirsk-Lodge-Barns-Logo-539x226.png\";s:5:\"width\";i:539;s:6:\"height\";i:226;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:{}}}'),(1791,971,'_wp_trash_meta_status','publish'),(1792,971,'_wp_trash_meta_time','1620767450'),(1793,972,'_wp_trash_meta_status','publish'),(1794,972,'_wp_trash_meta_time','1620767485'),(1795,973,'_wp_trash_meta_status','publish'),(1796,973,'_wp_trash_meta_time','1620767505'),(1797,974,'_edit_lock','1620767519:1'),(1798,974,'_wp_trash_meta_status','publish'),(1799,974,'_wp_trash_meta_time','1620767557'),(1800,271,'_yoast_wpseo_title','Thirsk Lodge Barns | Stunning Wedding and Events Venue | Thirsk'),(1801,271,'_yoast_wpseo_metadesc','Opening in July 2021; Thirsk Lodge barns is a fantastic brand-new wedding venue nestled in the heart of the gorgeous North Yorkshire countryside. Welcoming up to 140 guests for the ceremony and dining, we also have availability for more guests at the evening reception.This stunning exclusive use wedding venue is made up of several barns including the Main Barn, the snug Wheelhouse, the Bar, the Courtyard and the Dining Room. Therefore, you can enjoy a change of scenery as you move between your ceremony, drinks reception, wedding breakfast and then onto the dancing. The barns are all beautifully restored and show off traditional features, and the team have years of experience to help you plan your perfect day.'),(1802,403,'_yoast_wpseo_title','Thirsk Lodge Barns | Weddings - Wedding Venue North Yorkshire'),(1803,403,'_yoast_wpseo_metadesc','This stunning exclusive use wedding venue is made up of several barns including the Main Barn, the snug Wheelhouse, the Bar, the Courtyard and the Dining Room. Therefore, you can enjoy a change of scenery as you move between your ceremony, drinks reception, wedding breakfast and then onto the dancing. The barns are all beautifully restored and show off traditional features, and the team have years of experience to help you plan your perfect day. On your wedding day, the venue is entirely yours, and you are welcome to come and set up the day before. On the big day - your wedding coordinator will be at hand to help the smooth running of the wedding - taking the pressure off you so that you can focus on relaxing and enjoying your day.'),(1804,976,'_wpb_shortcodes_custom_css','.vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620765143367{padding-top: 0px !important;}.vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}.vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}'),(1805,457,'_yoast_wpseo_title','Thirsk Lodge Barns | The Farmhouse Accommodation'),(1806,457,'_yoast_wpseo_metadesc','On site we have the newly renovated Farmhouse and Laundry Cottage.The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.For weddings, you have use of the accommodation the night before and night of your big day.'),(1807,710,'rs_page_bg_color',''),(1808,960,'rs_page_bg_color',''),(1809,474,'rs_page_bg_color',''),(1810,440,'_yoast_wpseo_title','Thirsk Lodge Barns | Business Venue for Hire'),(1811,440,'_yoast_wpseo_metadesc','Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.'),(1812,440,'_yoast_wpseo_content_score','60'),(1813,440,'_yoast_wpseo_estimated-reading-time-minutes',''),(1814,374,'_yoast_wpseo_title','Thirsk Lodge Barns | Availability'),(1815,374,'_yoast_wpseo_metadesc','Opening in July 2021; Thirsk Lodge barns is a fantastic brand-new wedding venue nestled in the heart of the gorgeous North Yorkshire countryside. Welcoming up to 140 guests for the ceremony and dining, we also have availability for more guests at the evening reception.'),(1816,374,'_yoast_wpseo_content_score','60'),(1817,374,'_yoast_wpseo_estimated-reading-time-minutes',''),(1818,437,'_yoast_wpseo_title','Thirsk Lodge Barns | 2021 Christmas Experience'),(1819,437,'_yoast_wpseo_metadesc','The Ultimate Christmas Experience is coming to Thirsk Lodge Barns. Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance! We have dates for Wreath Making workshops and a Christmas Market.'),(1820,977,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1821,164,'_yoast_wpseo_title','Thirsk Lodge Barns | Contact us'),(1822,164,'_yoast_wpseo_metadesc','Address:Thirsk Lodge Barns,Newsham Road,Thirsk,YO7 4DB EMAIL:enquiries@thirsklodgebarns.com. PHONE:07815 560782'),(1823,978,'_wpb_shortcodes_custom_css','.vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}'),(1824,979,'_wpb_shortcodes_custom_css','.vc_custom_1616227214341{padding-top: 53px !important;}'),(1825,413,'_yoast_wpseo_title','Thirsk Lodge Barn | Events Venue, North Yorkshire'),(1826,413,'_yoast_wpseo_content_score','90'),(1827,413,'_yoast_wpseo_estimated-reading-time-minutes',''),(1828,433,'_yoast_wpseo_title','Thirsk Lodge Barns | What\'s On Events Calendar'),(1829,433,'_yoast_wpseo_content_score','90'),(1830,433,'_yoast_wpseo_estimated-reading-time-minutes',''),(1831,187,'_yoast_wpseo_title','Thirsk Lodge Barns | Wedding and Events Venue - Gallery'),(1832,187,'_yoast_wpseo_metadesc','This stunning exclusive use wedding venue is made up of several barns including the Main Barn, the snug Wheelhouse, the Bar, the Courtyard and the Dining Room. Therefore, you can enjoy a change of scenery as you move between your ceremony, drinks reception, wedding breakfast and then onto the dancing. The barns are all beautifully restored and show off traditional features, and the team have years of experience to help you plan your perfect day.On your wedding day, the venue is entirely yours, and you are welcome to come and set up the day before. On the big day - your wedding coordinator will be at hand to help the smooth running of the wedding - taking the pressure off you so that you can focus on relaxing and enjoying your day.This venue offers some fun, unique extras including a wall of fairy lights in the Main Barn, garden games including giant jenga, photo opportunities with a vintage tractor and a firepit in the courtyard for toasting marshmallows and lighting sparklers!There is accommodation on site for up to 11 people including the Laundry Cottage; a gorgeous, private converted cottage for the wedding couple including a roll topped bath in the bedroom and an open plan kitchen/living area.'),(1833,187,'_yoast_wpseo_content_score','30'),(1834,187,'_yoast_wpseo_estimated-reading-time-minutes',''),(1835,981,'_wp_attached_file','2021/05/thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo.png'),(1836,981,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:160;s:6:\"height\";i:160;s:4:\"file\";s:59:\"2021/05/thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1837,982,'_wp_attached_file','2021/05/Wedding-Venue_Thirsk-Lodge-Barn.png'),(1838,982,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:271;s:6:\"height\";i:480;s:4:\"file\";s:43:\"2021/05/Wedding-Venue_Thirsk-Lodge-Barn.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Wedding-Venue_Thirsk-Lodge-Barn-169x300.png\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Wedding-Venue_Thirsk-Lodge-Barn-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:43:\"Wedding-Venue_Thirsk-Lodge-Barn-271x198.png\";s:5:\"width\";i:271;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:43:\"Wedding-Venue_Thirsk-Lodge-Barn-271x260.png\";s:5:\"width\";i:271;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:43:\"Wedding-Venue_Thirsk-Lodge-Barn-271x380.png\";s:5:\"width\";i:271;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:43:\"Wedding-Venue_Thirsk-Lodge-Barn-271x303.png\";s:5:\"width\";i:271;s:6:\"height\";i:303;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:{}}}'),(1839,983,'_wp_attached_file','2021/05/Thirsk-Lodge-Barns-Logo-for-web.png'),(1840,983,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1718;s:6:\"height\";i:565;s:4:\"file\";s:43:\"2021/05/Thirsk-Lodge-Barns-Logo-for-web.png\";s:5:\"sizes\";a:17:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Thirsk-Lodge-Barns-Logo-for-web-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-Logo-for-web-1024x337.png\";s:5:\"width\";i:1024;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-768x253.png\";s:5:\"width\";i:768;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-Logo-for-web-1536x505.png\";s:5:\"width\";i:1536;s:6:\"height\";i:505;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-570x565.png\";s:5:\"width\";i:570;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-600x565.png\";s:5:\"width\";i:600;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"portfolio-landscape\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-800x565.png\";s:5:\"width\";i:800;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-400x260.png\";s:5:\"width\";i:400;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-500x380.png\";s:5:\"width\";i:500;s:6:\"height\";i:380;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_wide\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-Logo-for-web-1000x500.png\";s:5:\"width\";i:1000;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-500x565.png\";s:5:\"width\";i:500;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:23:\"portfolio_masonry_large\";a:4:{s:4:\"file\";s:44:\"Thirsk-Lodge-Barns-Logo-for-web-1000x565.png\";s:5:\"width\";i:1000;s:6:\"height\";i:565;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"portfolio_masonry_with_space\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-700x230.png\";s:5:\"width\";i:700;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:43:\"Thirsk-Lodge-Barns-Logo-for-web-539x303.png\";s:5:\"width\";i:539;s:6:\"height\";i:303;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:{}}}'),(1841,984,'_wp_attached_file','2021/05/TLB-600.png'),(1842,984,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:688;s:6:\"height\";i:226;s:4:\"file\";s:19:\"2021/05/TLB-600.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"TLB-600-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"TLB-600-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:19:\"TLB-600-570x226.png\";s:5:\"width\";i:570;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:19:\"TLB-600-600x226.png\";s:5:\"width\";i:600;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:19:\"TLB-600-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:19:\"TLB-600-400x226.png\";s:5:\"width\";i:400;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:19:\"TLB-600-500x226.png\";s:5:\"width\";i:500;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:19:\"TLB-600-500x226.png\";s:5:\"width\";i:500;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:19:\"TLB-600-500x226.png\";s:5:\"width\";i:500;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:19:\"TLB-600-539x226.png\";s:5:\"width\";i:539;s:6:\"height\";i:226;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:{}}}'),(1843,985,'_wp_attached_file','2021/05/TLB-600-1.png'),(1844,985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:609;s:6:\"height\";i:200;s:4:\"file\";s:21:\"2021/05/TLB-600-1.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"TLB-600-1-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio-square\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"portfolio-portrait\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-600x200.png\";s:5:\"width\";i:600;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-345x198.png\";s:5:\"width\";i:345;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"qode-carousel_slider\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-400x200.png\";s:5:\"width\";i:400;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"portfolio_slider\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"portfolio_masonry_regular\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:22:\"portfolio_masonry_tall\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"latest_post_boxes\";a:4:{s:4:\"file\";s:21:\"TLB-600-1-539x200.png\";s:5:\"width\";i:539;s:6:\"height\";i:200;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:{}}}'),(1845,986,'_wp_attached_file','2021/05/TLB-350.png'),(1846,986,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:115;s:4:\"file\";s:19:\"2021/05/TLB-350.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"TLB-350-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"TLB-350-150x115.png\";s:5:\"width\";i:150;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"menu-featured-post\";a:4:{s:4:\"file\";s:19:\"TLB-350-345x115.png\";s:5:\"width\";i:345;s:6:\"height\";i:115;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:{}}}'),(1847,987,'_wp_attached_file','2021/05/TLB-243.png'),(1848,987,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:243;s:6:\"height\";i:80;s:4:\"file\";s:19:\"2021/05/TLB-243.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"TLB-243-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;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:{}}}'),(1849,988,'_wp_attached_file','2021/05/TLB-logo_Whiteweb.png'),(1850,988,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:96;s:4:\"file\";s:29:\"2021/05/TLB-logo_Whiteweb.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"TLB-logo_Whiteweb-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"TLB-logo_Whiteweb-150x96.png\";s:5:\"width\";i:150;s:6:\"height\";i:96;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:{}}}');
/*!40000 ALTER TABLE `wpgb_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_posts`
--

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

--
-- Dumping data for table `wpgb_posts`
--

LOCK TABLES `wpgb_posts` WRITE;
/*!40000 ALTER TABLE `wpgb_posts` DISABLE KEYS */;
INSERT INTO `wpgb_posts` VALUES (1,1,'2021-03-18 21:19:53','2021-03-18 21:19:53','<!-- wp:paragraph -->\r\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\r\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2021-03-19 22:54:56','2021-03-19 22:54:56','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=1',0,'post','',1),(2,1,'2021-03-18 21:19:53','2021-03-18 21:19:53','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2021-03-18 21:19:53','2021-03-18 21:19:53','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=2',0,'page','',0),(3,1,'2021-03-18 21:19:53','2021-03-18 21:19:53','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://www.thirsklodgebarnsstaging.partridgecreative.co.uk.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2021-03-18 21:19:53','2021-03-18 21:19:53','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=3',0,'page','',0),(5,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','<p>&nbsp;</p>\r\n<!-- wp:heading {\"align\":\"wide\",\"fontSize\":\"gigantic\",\"style\":{\"typography\":{\"lineHeight\":\"1.1\"}}} -->\r\n<h2 class=\"alignwide has-text-align-wide has-gigantic-font-size\" style=\"line-height: 1.1;\">Create your website with blocks</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-columns-overlap\"} -->\r\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-style-twentytwentyone-columns-overlap\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\"} -->\r\n<figure class=\"wp-block-image alignfull size-large\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg\" alt=\"“Roses Trémières” by Berthe Morisot\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\",\"className\":\"is-style-twentytwentyone-image-frame\"} -->\r\n<figure class=\"wp-block-image alignfull size-large is-style-twentytwentyone-image-frame\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg\" alt=\"“In the Bois de Boulogne” by Berthe Morisot\" /></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"alignfull size-full is-style-twentytwentyone-border\"} -->\r\n<figure class=\"wp-block-image size-large alignfull size-full is-style-twentytwentyone-border\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg\" alt=\"“Young Woman in Mauve” by Berthe Morisot\" /></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:spacer {\"height\":50} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 50px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\r\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\r\n<h3>Add block patterns</h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Block patterns are pre-designed groups of blocks. To add one, select the Add Block button [+] in the toolbar at the top of the editor. Switch to the Patterns tab underneath the search bar, and choose a pattern.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\r\n<h3>Frame your images</h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Twenty Twenty-One includes stylish borders for your content. With an Image block selected, open the \"Styles\" panel within the Editor sidebar. Select the \"Frame\" block style to activate it.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\r\n<h3>Overlap columns</h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Twenty Twenty-One also includes an overlap style for column blocks. With a Columns block selected, open the \"Styles\" panel within the Editor sidebar. Choose the \"Overlap\" block style to try it out.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:cover {\"overlayColor\":\"green\",\"contentPosition\":\"center center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-border\"} -->\r\n<div class=\"wp-block-cover alignwide has-green-background-color has-background-dim is-style-twentytwentyone-border\">\r\n<div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":20} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 20px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:paragraph {\"fontSize\":\"huge\"} -->\r\n<p class=\"has-huge-font-size\">Need help?</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:spacer {\"height\":75} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 75px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:columns -->\r\n<div class=\"wp-block-columns\"><!-- wp:column -->\r\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\r\n<p><a href=\"https://wordpress.org/support/article/twenty-twenty-one/\">Read the Theme Documentation</a></p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column -->\r\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\r\n<p><a href=\"https://wordpress.org/support/theme/twentytwentyone/\">Check out the Support Forums</a></p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:spacer {\"height\":20} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 20px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer --></div>\r\n</div>\r\n<!-- /wp:cover -->','Blocks','','draft','closed','closed','','create-your-website-with-blocks','','','2021-05-06 20:25:16','2021-05-06 20:25:16','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=5',0,'page','',0),(6,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe you&rsquo;re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About','','trash','closed','closed','','about__trashed','','','2021-05-06 20:18:59','2021-05-06 20:18:59','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=6',0,'page','',0),(8,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','','BLOG','','publish','closed','closed','','blog','','','2021-05-06 20:47:09','2021-05-06 20:47:09','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=8',0,'page','',0),(10,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','\n					<!-- wp:heading {\"align\":\"wide\",\"fontSize\":\"gigantic\",\"style\":{\"typography\":{\"lineHeight\":\"1.1\"}}} -->\n					<h2 class=\"alignwide has-text-align-wide has-gigantic-font-size\" style=\"line-height:1.1\">Create your website with blocks</h2>\n					<!-- /wp:heading -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-columns-overlap\"} -->\n					<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-style-twentytwentyone-columns-overlap\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\"} -->\n					<figure class=\"wp-block-image alignfull size-large\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg\" alt=\"&#8220;Roses Trémières&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\",\"className\":\"is-style-twentytwentyone-image-frame\"} -->\n					<figure class=\"wp-block-image alignfull size-large is-style-twentytwentyone-image-frame\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg\" alt=\"&#8220;In the Bois de Boulogne&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"center\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"alignfull size-full is-style-twentytwentyone-border\"} -->\n					<figure class=\"wp-block-image size-large alignfull size-full is-style-twentytwentyone-border\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg\" alt=\"&#8220;Young Woman in Mauve&#8221; by Berthe Morisot\"/></figure>\n					<!-- /wp:image --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer {\"height\":50} -->\n					<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\n					<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Add block patterns</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Block patterns are pre-designed groups of blocks. To add one, select the Add Block button [+] in the toolbar at the top of the editor. Switch to the Patterns tab underneath the search bar, and choose a pattern.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Frame your images</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Twenty Twenty-One includes stylish borders for your content. With an Image block selected, open the &quot;Styles&quot; panel within the Editor sidebar. Select the &quot;Frame&quot; block style to activate it.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column {\"verticalAlignment\":\"top\"} -->\n					<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\n					<h3>Overlap columns</h3>\n					<!-- /wp:heading -->\n\n					<!-- wp:paragraph -->\n					<p>Twenty Twenty-One also includes an overlap style for column blocks. With a Columns block selected, open the &quot;Styles&quot; panel within the Editor sidebar. Choose the &quot;Overlap&quot; block style to try it out.</p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer -->\n					<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:cover {\"overlayColor\":\"green\",\"contentPosition\":\"center center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-border\"} -->\n					<div class=\"wp-block-cover alignwide has-green-background-color has-background-dim is-style-twentytwentyone-border\"><div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":20} -->\n					<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:paragraph {\"fontSize\":\"huge\"} -->\n					<p class=\"has-huge-font-size\">Need help?</p>\n					<!-- /wp:paragraph -->\n\n					<!-- wp:spacer {\"height\":75} -->\n					<div style=\"height:75px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer -->\n\n					<!-- wp:columns -->\n					<div class=\"wp-block-columns\"><!-- wp:column -->\n					<div class=\"wp-block-column\"><!-- wp:paragraph -->\n					<p><a href=\"https://wordpress.org/support/article/twenty-twenty-one/\">Read the Theme Documentation</a></p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column -->\n\n					<!-- wp:column -->\n					<div class=\"wp-block-column\"><!-- wp:paragraph -->\n					<p><a href=\"https://wordpress.org/support/theme/twentytwentyone/\">Check out the Support Forums</a></p>\n					<!-- /wp:paragraph --></div>\n					<!-- /wp:column --></div>\n					<!-- /wp:columns -->\n\n					<!-- wp:spacer {\"height\":20} -->\n					<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n					<!-- /wp:spacer --></div></div>\n					<!-- /wp:cover -->','Create your website with blocks','','inherit','closed','closed','','5-revision-v1','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',5,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=10',0,'revision','',0),(11,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','<!-- wp:paragraph -->\n<p>You might be an artist who would like to introduce yourself and your work here or maybe you&rsquo;re a business with a mission to describe.</p>\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','6-revision-v1','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',6,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=11',0,'revision','',0),(13,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','','Blog','','inherit','closed','closed','','8-revision-v1','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',8,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=13',0,'revision','',0),(14,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','','Home','','publish','closed','closed','','home','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/home/',0,'nav_menu_item','',0),(15,1,'2021-03-18 21:21:27','2021-03-18 21:21:27',' ','','','publish','closed','closed','','15','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/15/',1,'nav_menu_item','',0),(16,1,'2021-03-18 21:21:27','2021-03-18 21:21:27',' ','','','publish','closed','closed','','16','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/16/',2,'nav_menu_item','',0),(18,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','','Facebook','','publish','closed','closed','','facebook','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/facebook/',0,'nav_menu_item','',0),(19,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','','Twitter','','publish','closed','closed','','twitter','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/twitter/',1,'nav_menu_item','',0),(20,1,'2021-03-18 21:21:27','2021-03-18 21:21:27','','Instagram','','publish','closed','closed','','instagram','','','2021-03-18 21:21:27','2021-03-18 21:21:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/instagram/',2,'nav_menu_item','',0),(21,1,'2021-03-18 21:21:28','2021-03-18 21:21:28','','Email','','publish','closed','closed','','email','','','2021-03-18 21:21:28','2021-03-18 21:21:28','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/email/',3,'nav_menu_item','',0),(23,1,'2021-03-18 21:27:09','2021-03-18 21:27:09','<label> Your name\r\n    [text* your-name] </label>\r\n\r\n<label> Your email\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text* your-subject] </label>\r\n\r\n<label> Your message (optional)\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Submit\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@thirsklodgebarnsstaging.partridgecreative.co.uk>\n[_site_admin_email]\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 [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@thirsklodgebarnsstaging.partridgecreative.co.uk>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\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.\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 date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\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.\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','','','2021-05-11 20:37:07','2021-05-11 20:37:07','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=wpcf7_contact_form&#038;p=23',0,'wpcf7_contact_form','',0),(24,1,'2017-12-04 16:17:21','2017-12-04 16:17:21','','logo','','inherit','open','closed','','logo','','','2017-12-04 16:17:21','2017-12-04 16:17:21','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/logo.png',0,'attachment','image/png',0),(25,1,'2017-12-05 09:12:19','2017-12-05 09:12:19','','home-image-1','','inherit','open','closed','','home-image-1','','','2017-12-05 09:12:19','2017-12-05 09:12:19','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-1.jpg',0,'attachment','image/jpeg',0),(26,1,'2017-12-05 09:12:45','2017-12-05 09:12:45','','home-image-2','','inherit','open','closed','','home-image-2','','','2017-12-05 09:12:45','2017-12-05 09:12:45','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-2.jpg',0,'attachment','image/jpeg',0),(27,1,'2017-12-05 09:35:25','2017-12-05 09:35:25','','home-slider-image-3','','inherit','open','closed','','home-slider-image-3','','','2017-12-05 09:35:25','2017-12-05 09:35:25','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-slider-image-3.png',0,'attachment','image/png',0),(28,1,'2017-12-05 10:03:36','2017-12-05 10:03:36','','home-slider-image-1','','inherit','open','closed','','home-slider-image-1','','','2017-12-05 10:03:36','2017-12-05 10:03:36','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-slider-image-1.png',0,'attachment','image/png',0),(31,1,'2017-12-05 11:27:40','2017-12-05 11:27:40','','home-image-3','','inherit','open','closed','','home-image-3','','','2017-12-05 11:27:40','2017-12-05 11:27:40','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-3.png',0,'attachment','image/png',0),(37,1,'2017-12-05 11:32:28','2017-12-05 11:32:28','','home-video-background-image','','inherit','open','closed','','home-video-background-image','','','2017-12-05 11:32:28','2017-12-05 11:32:28','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-video-background-image.jpg',0,'attachment','image/jpeg',0),(39,1,'2017-12-05 11:45:07','2017-12-05 11:45:07','','team-image-1','','inherit','open','closed','','team-image-1','','','2017-12-05 11:45:07','2017-12-05 11:45:07','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/team-image-1.jpg',0,'attachment','image/jpeg',0),(46,1,'2017-12-05 13:10:53','2017-12-05 13:10:53','','team-image-2','','inherit','open','closed','','team-image-2','','','2017-12-05 13:10:53','2017-12-05 13:10:53','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/team-image-2.jpg',0,'attachment','image/jpeg',0),(47,1,'2017-12-05 13:11:14','2017-12-05 13:11:14','','team-image-3','','inherit','open','closed','','team-image-3','','','2017-12-05 13:11:14','2017-12-05 13:11:14','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/team-image-3.jpg',0,'attachment','image/jpeg',0),(65,1,'2017-12-05 13:54:45','2017-12-05 13:54:45','','GH, March 2021','','publish','closed','closed','','tesrtimonial-1','','','2021-05-04 13:03:04','2021-05-04 13:03:04','',0,'http://bridge123.qodeinteractive.com/?post_type=testimonials&#038;p=65',0,'testimonials','',0),(66,1,'2017-12-05 13:56:01','2017-12-05 13:56:01','','E&C, getting married September 2021','','publish','closed','closed','','testimonial-2','','','2021-05-04 13:03:37','2021-05-04 13:03:37','',0,'http://bridge123.qodeinteractive.com/?post_type=testimonials&#038;p=66',0,'testimonials','',0),(67,1,'2017-12-05 13:58:06','2017-12-05 13:58:06','','L&D, getting married August 2022','','publish','closed','closed','','67','','','2021-05-04 13:04:07','2021-05-04 13:04:07','',0,'http://bridge123.qodeinteractive.com/?post_type=testimonials&#038;p=67',0,'testimonials','',0),(76,1,'2017-12-05 14:25:28','2017-12-05 14:25:28','','home-image-7','','inherit','open','closed','','home-image-7','','','2017-12-05 14:25:28','2017-12-05 14:25:28','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-7.jpg',0,'attachment','image/jpeg',0),(86,1,'2017-12-05 14:51:24','2017-12-05 14:51:24','','pin','','inherit','open','closed','','pin','','','2017-12-05 14:51:24','2017-12-05 14:51:24','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/pin.png',0,'attachment','image/png',0),(117,1,'2017-12-06 09:28:34','2017-12-06 09:28:34','','home-image-4','','inherit','open','closed','','home-image-4','','','2017-12-06 09:28:34','2017-12-06 09:28:34','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-4.jpg',0,'attachment','image/jpeg',0),(118,1,'2017-12-06 09:28:36','2017-12-06 09:28:36','','home-image-5','','inherit','open','closed','','home-image-5','','','2017-12-06 09:28:36','2017-12-06 09:28:36','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-5.jpg',0,'attachment','image/jpeg',0),(119,1,'2017-12-06 09:28:38','2017-12-06 09:28:38','','home-image-6','','inherit','open','closed','','home-image-6','','','2017-12-06 09:28:38','2017-12-06 09:28:38','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-6.jpg',0,'attachment','image/jpeg',0),(130,1,'2017-12-06 11:40:58','2017-12-06 11:40:58','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excellent Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"28px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"20px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel.\r\n\r\n&nbsp;\r\n\r\nSed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. .[/vc_column_text][vc_empty_space height=\"40px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512567303838{padding-top: 95px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480031464{padding-top: 58px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616105689085{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}\" background_color=\"#45484b\" border_color=\"#45484b\"][vc_column css=\".vc_custom_1616105697103{background-color: #45484b !important;}\"][vc_column_text]\r\n<h1>Happy Customers</h1>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][qode_elements_holder background_color=\"#45484b\" number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\" background_color=\"#45484b\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\" text_color=\"#ffffff\" author_text_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','About Us','','draft','closed','closed','','about-us','','','2021-05-06 20:25:22','2021-05-06 20:25:22','',0,'http://bridge123.qodeinteractive.com/?page_id=130',0,'page','',0),(143,1,'2017-12-06 12:14:07','2017-12-06 12:14:07','','about-us-video-box-image','','inherit','open','closed','','about-us-video-box-image','','','2017-12-06 12:14:07','2017-12-06 12:14:07','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/about-us-video-box-image.jpg',0,'attachment','image/jpeg',0),(164,1,'2017-12-06 13:57:45','2017-12-06 13:57:45','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"794\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','CONTACT','','publish','closed','closed','','contact','','','2021-05-13 10:25:46','2021-05-13 10:25:46','',0,'http://bridge123.qodeinteractive.com/?page_id=164',0,'page','',0),(183,1,'2017-12-06 15:07:24','2017-12-06 15:07:24','<div>[text text-322 placeholder \"Full Name...\"]</div>\n<div>[text text-322 placeholder \"Email address\"]</div>\n<div>[textarea textarea-836 placeholder \"Text message\"]</div>\n[submit \"SEND\"]\n1\nBridge \"[your-subject]\"\n[your-name] <wordpress@bridge123.qodeinteractive.com>\nsupport@qodeinteractive.com\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Bridge (http://bridge123.qodeinteractive.com)\n\n\n\n\n\nBridge \"[your-subject]\"\nBridge <wordpress@bridge123.qodeinteractive.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Bridge (http://bridge123.qodeinteractive.com)\nReply-To: support@qodeinteractive.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-2','','','2017-12-06 15:07:24','2017-12-06 15:07:24','',0,'http://bridge123.qodeinteractive.com/?post_type=wpcf7_contact_form&amp;p=183',0,'wpcf7_contact_form','',0),(187,1,'2017-12-06 15:26:26','2017-12-06 15:26:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,814,582,841,580,804,827,815,576,853\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','publish','closed','closed','','gallery','','','2021-05-13 11:21:24','2021-05-13 11:21:24','',0,'http://bridge123.qodeinteractive.com/?page_id=187',0,'page','',0),(191,1,'2017-12-06 15:41:06','2017-12-06 15:41:06','','gallery-image-1','','inherit','open','closed','','gallery-image-1','','','2017-12-06 15:41:06','2017-12-06 15:41:06','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/gallery-image-1.jpg',0,'attachment','image/jpeg',0),(192,1,'2017-12-06 15:41:10','2017-12-06 15:41:10','','gallery-image-2','','inherit','open','closed','','gallery-image-2','','','2017-12-06 15:41:10','2017-12-06 15:41:10','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/gallery-image-2.jpg',0,'attachment','image/jpeg',0),(193,1,'2017-12-06 15:41:13','2017-12-06 15:41:13','','gallery-image-3','','inherit','open','closed','','gallery-image-3','','','2017-12-06 15:41:13','2017-12-06 15:41:13','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/gallery-image-3.jpg',0,'attachment','image/jpeg',0),(194,1,'2017-12-06 15:41:18','2017-12-06 15:41:18','','gallery-image-4','','inherit','open','closed','','gallery-image-4','','','2017-12-06 15:41:18','2017-12-06 15:41:18','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/gallery-image-4.jpg',0,'attachment','image/jpeg',0),(195,1,'2017-12-06 15:41:21','2017-12-06 15:41:21','','gallery-image-5','','inherit','open','closed','','gallery-image-5','','','2017-12-06 15:41:21','2017-12-06 15:41:21','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/gallery-image-5.jpg',0,'attachment','image/jpeg',0),(196,1,'2017-12-06 15:41:24','2017-12-06 15:41:24','','gallery-image-6','','inherit','open','closed','','gallery-image-6','','','2017-12-06 15:41:24','2017-12-06 15:41:24','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/gallery-image-6.jpg',0,'attachment','image/jpeg',0),(200,1,'2017-12-06 15:48:44','2017-12-06 15:48:44','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"133px 6% 0 0\"][vc_column_text]\r\n<h2>Everything Begun In Early 1967</h2>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_separator type=\"small\" position=\"left\" color=\"#010101\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"15px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac puru[/vc_column_text][vc_empty_space height=\"37px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"110px 0 0 0\"][vc_single_image image=\"202\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512637091873{padding-top: 121px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_column_text]\r\n<h2>First Steps on Marketing 1970</h2>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_separator type=\"small\" position=\"left\" color=\"#010101\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"15px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel. Sed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tvempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. Curabitur vitae finibus odio\r\n\r\n&nbsp;\r\n\r\nPhasellus ornare feugiat tellus, a tvempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. Curabitur vitae finibus odio, ut porttitor nulla. Morbi aliquet lorem justo, non mattis velit fermentum a. Donec ligula libero, lacinia condimentum dapibus a, euismod[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732320444{padding-bottom: 125px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"110px 0 0 0\"][vc_single_image image=\"222\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2>Winners for the Best Wine in Europe, 1980</h2>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_separator type=\"small\" position=\"left\" color=\"#010101\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"15px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac puru[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','History','','draft','closed','closed','','history','','','2021-05-06 20:24:43','2021-05-06 20:24:43','',0,'http://bridge123.qodeinteractive.com/?page_id=200',0,'page','',0),(202,1,'2017-12-06 15:49:32','2017-12-06 15:49:32','','history-image-1','','inherit','open','closed','','history-image-1','','','2017-12-06 15:49:32','2017-12-06 15:49:32','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/history-image-1.jpg',0,'attachment','image/jpeg',0),(222,1,'2017-12-07 09:02:42','2017-12-07 09:02:42','','history-image-2','','inherit','open','closed','','history-image-2','','','2017-12-07 09:02:42','2017-12-07 09:02:42','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/history-image-2.jpg',0,'attachment','image/jpeg',0),(259,1,'2017-12-07 14:58:43','2017-12-07 14:58:43','','home-image-8','','inherit','open','closed','','home-image-8','','','2017-12-07 14:58:43','2017-12-07 14:58:43','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-8.jpg',0,'attachment','image/jpeg',0),(260,1,'2017-12-07 14:58:46','2017-12-07 14:58:46','','home-image-9','','inherit','open','closed','','home-image-9','','','2017-12-07 14:58:46','2017-12-07 14:58:46','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-9.jpg',0,'attachment','image/jpeg',0),(261,1,'2017-12-05 10:05:29','2017-12-05 10:05:29','','home-slider-image-2','','inherit','open','closed','','home-slider-image-2','','','2017-12-05 10:05:29','2017-12-05 10:05:29','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-slider-image-2.png',0,'attachment','image/png',0),(262,1,'2017-12-07 15:01:16','2017-12-07 15:01:16','','home-image-10','','inherit','open','closed','','home-image-10','','','2017-12-07 15:01:16','2017-12-07 15:01:16','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-image-10.jpg',0,'attachment','image/jpeg',0),(264,1,'2017-12-07 15:32:50','2017-12-07 15:32:50','','home-slider-image-1','','inherit','open','closed','','home-slider-image-1-2','','','2017-12-07 15:32:50','2017-12-07 15:32:50','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-slider-image-1.jpg',0,'attachment','image/jpeg',0),(265,1,'2017-12-07 15:36:09','2017-12-07 15:36:09','','home-slider-image-2','','inherit','open','closed','','home-slider-image-2-2','','','2017-12-07 15:36:09','2017-12-07 15:36:09','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/home-slider-image-2.jpg',0,'attachment','image/jpeg',0),(266,1,'2017-12-08 08:16:10','2017-12-08 08:16:10','','Test','','publish','closed','closed','','test','','','2017-12-08 08:16:10','2017-12-08 08:16:10','',0,'http://bridge123.qodeinteractive.com/?page_id=266',0,'page','',0),(270,1,'2017-12-08 09:21:19','2017-12-08 09:21:19','','sidearea-logo','','inherit','open','closed','','sidearea-logo','','','2017-12-08 09:21:19','2017-12-08 09:21:19','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2017/12/sidearea-logo.png',0,'attachment','image/png',0),(271,1,'2017-12-05 09:06:40','2017-12-05 09:06:40','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','publish','closed','closed','','home','','','2021-05-13 11:39:19','2021-05-13 11:39:19','',0,'http://bridge123.qodeinteractive.com/?page_id=4',0,'page','',0),(274,1,'2021-05-11 10:45:52','2021-03-18 21:28:01',' ','','','publish','closed','closed','','274','','','2021-05-11 10:45:52','2021-05-11 10:45:52','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/',12,'nav_menu_item','',0),(275,1,'2021-05-11 10:45:52','2021-03-18 21:28:01','','GALLERY','','publish','closed','closed','','275','','','2021-05-11 10:45:52','2021-05-11 10:45:52','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/',11,'nav_menu_item','',0),(276,1,'2017-11-29 13:49:03','2017-11-29 13:49:03','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world-2','','','2021-03-19 22:55:15','2021-03-19 22:55:15','',0,'http://bridge123.qodeinteractive.com/?p=1',0,'post','',1),(278,1,'2021-03-18 21:28:04','2021-03-18 21:28:04','','home-slider-image-31.png','','inherit','closed','closed','','home-slider-image-31-png','','','2021-03-18 21:28:04','2021-03-18 21:28:04','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider/home-slider-image-31.png',0,'attachment','image/png',0),(279,1,'2021-03-18 21:28:05','2021-03-18 21:28:05','','home-slider-image-21.png','','inherit','closed','closed','','home-slider-image-21-png','','','2021-03-18 21:28:05','2021-03-18 21:28:05','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider/home-slider-image-21.png',0,'attachment','image/png',0),(280,1,'2021-03-18 21:28:05','2021-03-18 21:28:05','','home-slider-image-11.png','','inherit','closed','closed','','home-slider-image-11-png','','','2021-03-18 21:28:05','2021-03-18 21:28:05','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider/home-slider-image-11.png',0,'attachment','image/png',0),(281,1,'2021-03-18 21:28:05','2021-03-18 21:28:05','','home-slider-image-11.jpg','','inherit','closed','closed','','home-slider-image-11-jpg','','','2021-03-18 21:28:05','2021-03-18 21:28:05','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider/home-slider-image-11.jpg',0,'attachment','image/jpeg',0),(282,1,'2021-03-18 21:28:05','2021-03-18 21:28:05','','home-slider-image-21.jpg','','inherit','closed','closed','','home-slider-image-21-jpg','','','2021-03-18 21:28:05','2021-03-18 21:28:05','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/revslider/home-slider-image-21.jpg',0,'attachment','image/jpeg',0),(283,1,'2021-03-18 21:28:42','2021-03-18 21:28:42','','Default Kit','','publish','closed','closed','','default-kit','','','2021-03-18 21:28:42','2021-03-18 21:28:42','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?elementor_library=default-kit',0,'elementor_library','',0),(284,1,'2021-03-18 21:33:54','2021-03-18 21:33:54','','Humdingers_Events & Catering_white','','inherit','open','closed','','humdingers_events-catering_white','','','2021-03-18 21:33:54','2021-03-18 21:33:54','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Humdingers_Events-Catering_white.png',0,'attachment','image/png',0),(285,1,'2021-03-18 21:34:14','2021-03-18 21:34:14','','Humdingers_Events & Catering_black','','inherit','open','closed','','humdingers_events-catering_black','','','2021-03-18 21:34:14','2021-03-18 21:34:14','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Humdingers_Events-Catering_black.png',0,'attachment','image/png',0),(286,1,'2021-03-18 21:39:08','2021-03-18 21:39:08','','h1-footer-02','','inherit','open','closed','','h1-footer-02','','','2021-03-18 21:39:08','2021-03-18 21:39:08','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/h1-footer-02.jpg',0,'attachment','image/jpeg',0),(287,1,'2021-03-18 22:03:09','2021-03-18 22:03:09','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Stay In Touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]Spinazzola\r\n\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]Morano Calabro\r\n\r\n1474 Alexander Valley Road Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 info@jordanwinery.com[/vc_column_text][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-03-18 22:03:09','2021-03-18 22:03:09','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=287',0,'revision','',0),(289,1,'2021-03-18 22:04:51','2021-03-18 22:04:51','','THIRSK LODGE BARNS','','publish','closed','closed','','289','','','2021-05-11 10:39:11','2021-05-11 10:39:11','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=slides&#038;p=289',0,'slides','',0),(290,1,'2021-03-18 22:04:19','2021-03-18 22:04:19','','nathan-dumlao-5BB_atDT4oA-unsplash (1)','','inherit','open','closed','','nathan-dumlao-5bb_atdt4oa-unsplash-1','','','2021-05-04 12:54:11','2021-05-04 12:54:11','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1.jpg',0,'attachment','image/jpeg',0),(291,1,'2021-03-18 22:07:09','2021-03-18 22:07:09','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"8\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"9\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h1>A Very Long Tradition of Making Excelente Wines</h1>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h1>Watch Our Intro Video</h1>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h1>Team Of Winners</h1>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item item_padding=\"0px 115px 0 0\" advanced_animations=\"no\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item item_padding=\"0px 115px 0 0\" advanced_animations=\"no\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item item_padding=\"0px 115px 0 0\" advanced_animations=\"no\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h1>Happy Customers</h1>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item item_padding=\"0 7% 0 7%\" advanced_animations=\"no\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-18 22:07:09','2021-03-18 22:07:09','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=291',0,'revision','',0),(293,1,'2021-03-18 22:08:11','2021-03-18 22:08:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"8\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"9\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-18 22:08:11','2021-03-18 22:08:11','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=293',0,'revision','',0),(295,1,'2021-03-18 22:11:26','2021-03-18 22:11:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"26\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"25\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-18 22:11:26','2021-03-18 22:11:26','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=295',0,'revision','',0),(296,1,'2021-03-18 22:12:34','2021-03-18 22:12:34','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excellent Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"28px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"20px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel.\r\n\r\n&nbsp;\r\n\r\nSed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. .[/vc_column_text][vc_empty_space height=\"40px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512567303838{padding-top: 95px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480031464{padding-top: 58px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616105551637{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}\"][vc_column][vc_column_text]\r\n<h1>Happy Customers</h1>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','130-revision-v1','','','2021-03-18 22:12:34','2021-03-18 22:12:34','',130,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=296',0,'revision','',0),(298,1,'2021-03-18 22:13:19','2021-03-18 22:13:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excellent Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"28px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"20px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel.\r\n\r\n&nbsp;\r\n\r\nSed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. .[/vc_column_text][vc_empty_space height=\"40px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512567303838{padding-top: 95px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480031464{padding-top: 58px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616105551637{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}\"][vc_column][vc_column_text]\r\n<h1>Happy Customers</h1>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\" background_color=\"#45484b\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\" text_color=\"#ffffff\" author_text_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','130-revision-v1','','','2021-03-18 22:13:19','2021-03-18 22:13:19','',130,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=298',0,'revision','',0),(299,1,'2021-03-18 22:13:54','2021-03-18 22:13:54','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excellent Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"28px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"20px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel.\r\n\r\n&nbsp;\r\n\r\nSed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. .[/vc_column_text][vc_empty_space height=\"40px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512567303838{padding-top: 95px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480031464{padding-top: 58px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616105551637{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}\"][vc_column][vc_column_text]\r\n<h1>Happy Customers</h1>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][qode_elements_holder background_color=\"#45484b\" number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\" background_color=\"#45484b\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\" text_color=\"#ffffff\" author_text_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','130-revision-v1','','','2021-03-18 22:13:54','2021-03-18 22:13:54','',130,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=299',0,'revision','',0),(300,1,'2021-03-18 22:14:57','2021-03-18 22:14:57','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]</p>\n<h2>A Very Long Tradition of Making Excellent Wines</h2>\n<p>[/vc_column_text][vc_empty_space height=\"28px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"20px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel.</p>\n<p>&nbsp;</p>\n<p>Sed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. .[/vc_column_text][vc_empty_space height=\"40px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512567303838{padding-top: 95px !important;}\" z_index=\"\"][vc_column][vc_column_text]</p>\n<h2>Team Of Winners</h2>\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480031464{padding-top: 58px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]</p>\n<h2>Marian H. Barber</h2>\n<p>[/vc_column_text][vc_column_text]</p>\n<h3>red wine expert</h3>\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]</p>\n<h2>Peter T. Rodriguez</h2>\n<p>[/vc_column_text][vc_column_text]</p>\n<h3>red wine expert</h3>\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]</p>\n<h2>Kenneth F. Richardson</h2>\n<p>[/vc_column_text][vc_column_text]</p>\n<h3>red wine expert</h3>\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616105689085{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}\" background_color=\"#45484b\" border_color=\"#45484b\"][vc_column][vc_column_text]</p>\n<h1>Happy Customers</h1>\n<p>[/vc_column_text][vc_empty_space height=\"26px\"][qode_elements_holder background_color=\"#45484b\" number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\" background_color=\"#45484b\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\" text_color=\"#ffffff\" author_text_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]</p>\n','About Us','','inherit','closed','closed','','130-autosave-v1','','','2021-03-18 22:14:57','2021-03-18 22:14:57','',130,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=300',0,'revision','',0),(301,1,'2021-03-18 22:15:00','2021-03-18 22:15:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excellent Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"28px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"20px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel.\r\n\r\n&nbsp;\r\n\r\nSed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. .[/vc_column_text][vc_empty_space height=\"40px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512567303838{padding-top: 95px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480031464{padding-top: 58px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"27px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616105689085{padding-top: 108px !important;padding-bottom: 126px !important;background-color: #45484b !important;}\" background_color=\"#45484b\" border_color=\"#45484b\"][vc_column css=\".vc_custom_1616105697103{background-color: #45484b !important;}\"][vc_column_text]\r\n<h1>Happy Customers</h1>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][qode_elements_holder background_color=\"#45484b\" number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\" background_color=\"#45484b\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\" text_color=\"#ffffff\" author_text_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','130-revision-v1','','','2021-03-18 22:15:00','2021-03-18 22:15:00','',130,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=301',0,'revision','',0),(302,1,'2021-03-18 22:15:54','2021-03-18 22:15:54','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"133px 6% 0 0\"][vc_column_text]\r\n<h2>Everything Begun In Early 1967</h2>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_separator type=\"small\" position=\"left\" color=\"#010101\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"15px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac puru[/vc_column_text][vc_empty_space height=\"37px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"110px 0 0 0\"][vc_single_image image=\"202\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512637091873{padding-top: 121px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][vc_column_text]\r\n<h2>First Steps on Marketing 1970</h2>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_separator type=\"small\" position=\"left\" color=\"#010101\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"15px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac purus. Vivamus hendrerit erat mauris, ac scelerisque turpis semper vel. Sed rhoncus tincidunt dolor, id hendrerit lorem suscipit nec. Phasellus ornare feugiat tellus, a tvempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. Curabitur vitae finibus odio\r\n\r\n&nbsp;\r\n\r\nPhasellus ornare feugiat tellus, a tvempor nibh dapibus eu. Pellentesque hendrerit eget ex id pulvinar. Curabitur vitae finibus odio, ut porttitor nulla. Morbi aliquet lorem justo, non mattis velit fermentum a. Donec ligula libero, lacinia condimentum dapibus a, euismod[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732320444{padding-bottom: 125px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"110px 0 0 0\"][vc_single_image image=\"222\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2>Winners for the Best Wine in Europe, 1980</h2>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_separator type=\"small\" position=\"left\" color=\"#010101\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"15px\"][vc_column_text]Aenean varius, arcu pretium semper luctus, quam sapien tincidunt augue, a sodales tortor orci vel nibh. Donec at euismod purus. Praesent nibh lectus, posuere id egestas sit amet, vehicula ac puru[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row]','History','','inherit','closed','closed','','200-revision-v1','','','2021-03-18 22:15:54','2021-03-18 22:15:54','',200,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=302',0,'revision','',0),(303,1,'2021-03-19 18:33:30','2021-03-19 18:33:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"26\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"25\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Home old','','draft','closed','closed','','home-old','','','2021-05-06 20:25:07','2021-05-06 20:25:07','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=303',0,'page','',0),(304,1,'2021-03-19 18:33:30','2021-03-19 18:33:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"26\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"25\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Home old','','inherit','closed','closed','','303-revision-v1','','','2021-03-19 18:33:30','2021-03-19 18:33:30','',303,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=304',0,'revision','',0),(305,1,'2021-03-19 18:33:34','2021-03-19 18:33:34','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"26\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"25\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Home old','','inherit','closed','closed','','303-autosave-v1','','','2021-03-19 18:33:34','2021-03-19 18:33:34','',303,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=305',0,'revision','',0),(307,1,'2021-03-19 18:36:58','2021-03-19 18:36:58','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"26\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"25\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Marian H. Barber</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Peter T. Rodriguez</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Kenneth F. Richardson</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row]\r\n[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"336\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][qode_vertical_separator vs_height=\"100\" vs_width=\"1\" vs_color=\"#000000\"][vc_empty_space height=\"25px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"DISCOVER MY SERVICES\" color=\"#000000\" hover_color=\"#5b5b5b\" link=\"https://www.heathergillespie.co.uk/services/\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"332\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"333\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"333\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 18:36:58','2021-03-19 18:36:58','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=307',0,'revision','',0),(308,1,'2021-03-19 18:45:45','2021-03-19 18:45:45','','Olive Tree_Wedding Venue_Thirsk Lodge Barn','','inherit','open','closed','','olive-tree_wedding-venue_thirsk-lodge-barn','','','2021-05-04 12:54:12','2021-05-04 12:54:12','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(309,1,'2021-03-19 18:47:58','2021-03-19 18:47:58','','Thirsk-Lodge-Barn-bridge-and-grooms','','inherit','open','closed','','thirsk-lodge-barn-bridge-and-grooms','','','2021-03-19 18:47:58','2021-03-19 18:47:58','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-bridge-and-grooms.jpg',0,'attachment','image/jpeg',0),(310,1,'2021-03-19 18:48:08','2021-03-19 18:48:08','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]</p>\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]</p>\r\n<h2>Watch Our Intro Video</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]</p>\r\n<h2>Team Of Winners</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"39\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]</p>\r\n<h2>Marian H. Barber</h2>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h3>red wine expert</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"46\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]</p>\r\n<h2>Peter T. Rodriguez</h2>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h3>red wine expert</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"47\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]</p>\r\n<h2>Kenneth F. Richardson</h2>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h3>red wine expert</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"false\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"117,118,119,259,260,262\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]</p>\r\n<h2>Happy Customers</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"76\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]</p>\r\n<h2>Stay in Touch With Us</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``featureType``: ``administrative``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.country``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ff0000``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.province``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#b29e79``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: 65<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``on``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.man_made``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.natural.landcover``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: ``50``<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.business``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#d9d5c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdb6a8``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.place_of_worship``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``30``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``40``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ffff00``<br />\r\n},<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -97<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#a39e95``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola<br />\r\n76014 Province of Barletta-Andria-Trani, Italy<br />\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003</p>\r\n<p>800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]<br />\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"336\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h2>Hello, I’m Heather.</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]</p>\r\n<h2>Here to help</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"54px\"][qode_vertical_separator vs_height=\"100\" vs_width=\"1\" vs_color=\"#000000\"][vc_empty_space height=\"25px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"DISCOVER MY SERVICES\" color=\"#000000\" hover_color=\"#5b5b5b\" link=\"https://www.heathergillespie.co.uk/services/\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"332\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"333\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Services</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support</p>\r\n<p>Marketing, Brand, and Communication</p>\r\n<p>Event planning</p>\r\n<p>Lifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Services</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support</p>\r\n<p>Marketing, Brand, and Communication</p>\r\n<p>Event planning</p>\r\n<p>Lifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"333\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 18:48:08','2021-03-19 18:48:08','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=310',0,'revision','',0),(311,1,'2021-03-19 18:49:02','2021-03-19 18:49:02','','Thirsk Lodge Barn Bridge and Groom','','inherit','open','closed','','thirsk-lodge-barn-bridge-and-groom','','','2021-03-19 18:49:02','2021-03-19 18:49:02','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Bridge-and-Groom.jpg',0,'attachment','image/jpeg',0),(312,1,'2021-03-19 18:50:35','2021-03-19 18:50:35','','nathan-dumlao-5BB_atDT4oA-unsplash-(1)','','inherit','open','closed','','nathan-dumlao-5bb_atdt4oa-unsplash-1-2','','','2021-03-19 18:50:35','2021-03-19 18:50:35','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-1.jpg',0,'attachment','image/jpeg',0),(313,1,'2021-03-19 18:51:24','2021-03-19 18:51:24','','christina-deravedisian-CouOAXfXYyk-unsplash-(1)','','inherit','open','closed','','christina-deravedisian-couoaxfxyyk-unsplash-1','','','2021-03-19 18:51:24','2021-03-19 18:51:24','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/christina-deravedisian-CouOAXfXYyk-unsplash-1.jpg',0,'attachment','image/jpeg',0),(314,1,'2021-03-19 18:51:30','2021-03-19 18:51:30','','Christmas at Thirsk Lodge Barn','','inherit','open','closed','','christmas-at-thirsk-lodge-barn','','','2021-03-19 18:51:30','2021-03-19 18:51:30','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(315,1,'2021-03-19 18:51:33','2021-03-19 18:51:33','','Christmas_Thirsk Lodge Barn','','inherit','open','closed','','christmas_thirsk-lodge-barn','','','2021-03-19 18:51:33','2021-03-19 18:51:33','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(316,1,'2021-03-19 18:51:36','2021-03-19 18:51:36','','nathan-dumlao-5BB_atDT4oA-unsplash-(1)','','inherit','open','closed','','nathan-dumlao-5bb_atdt4oa-unsplash-1-3','','','2021-05-04 12:54:10','2021-05-04 12:54:10','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/nathan-dumlao-5BB_atDT4oA-unsplash-1-2.jpg',0,'attachment','image/jpeg',0),(317,1,'2021-03-19 18:51:41','2021-03-19 18:51:41','','Olive Tree_North Yorkshire _Thirsk Lodge Barn','','inherit','open','closed','','olive-tree_north-yorkshire-_thirsk-lodge-barn','','','2021-03-19 18:51:41','2021-03-19 18:51:41','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Olive-Tree_North-Yorkshire-_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(318,1,'2021-03-19 18:51:47','2021-03-19 18:51:47','','Olive Tree_Wedding Venue_Thirsk Lodge Barn','','inherit','open','closed','','olive-tree_wedding-venue_thirsk-lodge-barn-2','','','2021-05-04 12:54:03','2021-05-04 12:54:03','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Olive-Tree_Wedding-Venue_Thirsk-Lodge-Barn-1.jpg',0,'attachment','image/jpeg',0),(319,1,'2021-03-19 18:51:52','2021-03-19 18:51:52','','Stunning events venue_North Yorkshire','','inherit','open','closed','','stunning-events-venue_north-yorkshire','','','2021-03-19 18:51:52','2021-03-19 18:51:52','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Stunning-events-venue_North-Yorkshire.jpg',0,'attachment','image/jpeg',0),(320,1,'2021-03-19 18:51:59','2021-03-19 18:51:59','','Thirsk Lodge Barn 2021 wedding venue','','inherit','open','closed','','thirsk-lodge-barn-2021-wedding-venue','','','2021-03-19 18:51:59','2021-03-19 18:51:59','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg',0,'attachment','image/jpeg',0),(321,1,'2021-03-19 18:52:03','2021-03-19 18:52:03','','Thirsk Lodge Barn Bridge and Groom','','inherit','open','closed','','thirsk-lodge-barn-bridge-and-groom-2','','','2021-03-19 18:52:03','2021-03-19 18:52:03','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Bridge-and-Groom-1.jpg',0,'attachment','image/jpeg',0),(322,1,'2021-03-19 18:52:06','2021-03-19 18:52:06','','Thirsk Lodge Barn renovation','','inherit','open','closed','','thirsk-lodge-barn-renovation','','','2021-03-19 18:52:06','2021-03-19 18:52:06','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-renovation.jpg',0,'attachment','image/jpeg',0),(323,1,'2021-03-19 18:52:12','2021-03-19 18:52:12','','Thirsk Lodge Barn_Wedding venue Thirsk','','inherit','open','closed','','thirsk-lodge-barn_wedding-venue-thirsk','','','2021-03-19 18:52:12','2021-03-19 18:52:12','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk.jpg',0,'attachment','image/jpeg',0),(324,1,'2021-03-19 18:52:18','2021-03-19 18:52:18','','Thirsk Lodge Barns_Wedding venue North Yorkshire _Thirsk','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-north-yorkshire-_thirsk','','','2021-03-19 18:52:18','2021-03-19 18:52:18','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg',0,'attachment','image/jpeg',0),(325,1,'2021-03-19 18:52:21','2021-03-19 18:52:21','','Thirsk-Lodge-Barn-bridge-and-grooms','','inherit','open','closed','','thirsk-lodge-barn-bridge-and-grooms-2','','','2021-03-19 18:52:21','2021-03-19 18:52:21','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-bridge-and-grooms-1.jpg',0,'attachment','image/jpeg',0),(326,1,'2021-03-19 18:52:23','2021-03-19 18:52:23','','Wedding Conference Events Venue_Thrisk Lodge Barn','','inherit','open','closed','','wedding-conference-events-venue_thrisk-lodge-barn','','','2021-03-19 18:52:23','2021-03-19 18:52:23','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Conference-Events-Venue_Thrisk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(327,1,'2021-03-19 18:52:26','2021-03-19 18:52:26','','Wedding Thirsk Lodge Barn_Yorkshire Stunning Wedding Venue','','inherit','open','closed','','wedding-thirsk-lodge-barn_yorkshire-stunning-wedding-venue','','','2021-03-19 18:52:26','2021-03-19 18:52:26','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Thirsk-Lodge-Barn_Yorkshire-Stunning-Wedding-Venue.jpg',0,'attachment','image/jpeg',0),(328,1,'2021-03-19 18:52:31','2021-03-19 18:52:31','','Wedding Venue_Thirsk Lodge Barn_stunning venue','','inherit','open','closed','','wedding-venue_thirsk-lodge-barn_stunning-venue','','','2021-03-19 18:52:31','2021-03-19 18:52:31','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_Thirsk-Lodge-Barn_stunning-venue.jpg',0,'attachment','image/jpeg',0),(329,1,'2021-03-19 18:52:34','2021-03-19 18:52:34','','Wedding Venue_Thirsk_Thirsk Lodge Barn','','inherit','open','closed','','wedding-venue_thirsk_thirsk-lodge-barn','','','2021-03-19 18:52:34','2021-03-19 18:52:34','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(330,1,'2021-03-19 18:52:38','2021-03-19 18:52:38','','Wedding Venue_ultimate venue destination_North Yorkshire','','inherit','open','closed','','wedding-venue_ultimate-venue-destination_north-yorkshire','','','2021-03-19 18:52:38','2021-03-19 18:52:38','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_ultimate-venue-destination_North-Yorkshire.jpg',0,'attachment','image/jpeg',0),(331,1,'2021-03-19 18:52:41','2021-03-19 18:52:41','','wedding-dreamz-ga7DG9lYbZg-unsplash','','inherit','open','closed','','wedding-dreamz-ga7dg9lybzg-unsplash','','','2021-03-19 18:52:41','2021-03-19 18:52:41','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/wedding-dreamz-ga7DG9lYbZg-unsplash.jpg',0,'attachment','image/jpeg',0),(332,1,'2021-03-19 18:52:47','2021-03-19 18:52:47','','Wild grassland_Wedding venue_Thirsk Lodge Barn','','inherit','open','closed','','wild-grassland_wedding-venue_thirsk-lodge-barn','','','2021-03-19 18:52:47','2021-03-19 18:52:47','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wild-grassland_Wedding-venue_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(333,1,'2021-03-19 18:54:56','2021-03-19 18:54:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"311\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Weddings</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Events</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"324\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Availability</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][qode_vertical_separator vs_height=\"100\" vs_width=\"1\" vs_color=\"#000000\"][vc_empty_space height=\"25px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"DISCOVER MY SERVICES\" color=\"#000000\" hover_color=\"#5b5b5b\" link=\"https://www.heathergillespie.co.uk/services/\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"333\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"333\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 18:54:56','2021-03-19 18:54:56','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=333',0,'revision','',0),(334,1,'2021-03-19 18:58:06','2021-03-19 18:58:06','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Very Long Tradition of Making Excelente Wines</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"311\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Weddings</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Events</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"324\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Availability</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][qode_vertical_separator vs_height=\"100\" vs_width=\"1\" vs_color=\"#000000\"][vc_empty_space height=\"25px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"DISCOVER MY SERVICES\" color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_radius=\"2\" border_color=\"#000000\" hover_border_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 18:58:06','2021-03-19 18:58:06','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=334',0,'revision','',0),(335,1,'2021-03-19 20:44:00','2021-03-19 20:44:00','','Letty+Will_Thirsk-Lodge-Barn','','inherit','open','closed','','lettywill_thirsk-lodge-barn','','','2021-03-19 20:44:00','2021-03-19 20:44:00','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(336,1,'2021-03-19 20:45:05','2021-03-19 20:45:05','','Overlay','','inherit','open','closed','','overlay','','','2021-03-19 20:45:05','2021-03-19 20:45:05','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Overlay.png',0,'attachment','image/png',0),(337,1,'2021-03-19 20:48:39','2021-03-19 20:48:39','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480013985{padding-top: 100px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Watch Our Intro Video</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"35px\"][qode_video_box video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\" video_image=\"37\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"311\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Weddings</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Events</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"324\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Availability</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][qode_vertical_separator vs_height=\"100\" vs_width=\"1\" vs_color=\"#000000\"][vc_empty_space height=\"25px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"DISCOVER MY SERVICES\" color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_radius=\"2\" border_color=\"#000000\" hover_border_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 20:48:39','2021-03-19 20:48:39','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=337',0,'revision','',0),(338,1,'2021-03-19 20:51:11','2021-03-19 20:51:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][qode_vertical_separator vs_height=\"100\" vs_width=\"1\" vs_color=\"#000000\"][vc_empty_space height=\"25px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"DISCOVER MY SERVICES\" color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_radius=\"2\" border_color=\"#000000\" hover_border_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"311\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Weddings</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Events</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"324\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Availability</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 20:51:11','2021-03-19 20:51:11','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=338',0,'revision','',0),(339,1,'2021-03-19 20:52:05','2021-03-19 20:52:05','','','','draft','closed','closed','','339','','','2021-03-19 20:54:20','2021-03-19 20:54:20','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=masonry_gallery&#038;p=339',0,'masonry_gallery','',0),(340,1,'2021-03-19 20:52:29','2021-03-19 20:52:29','','','','publish','closed','closed','','340','','','2021-03-19 22:26:50','2021-03-19 22:26:50','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=masonry_gallery&#038;p=340',0,'masonry_gallery','',0),(341,1,'2021-03-19 20:52:42','2021-03-19 20:52:42','','','','publish','closed','closed','','341','','','2021-03-19 22:27:08','2021-03-19 22:27:08','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=masonry_gallery&#038;p=341',0,'masonry_gallery','',0),(342,1,'2021-03-19 20:53:04','2021-03-19 20:53:04','','','','publish','closed','closed','','342','','','2021-03-19 22:29:33','2021-03-19 22:29:33','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=masonry_gallery&#038;p=342',0,'masonry_gallery','',0),(343,1,'2021-03-19 20:53:28','2021-03-19 20:53:28','','','','publish','closed','closed','','343','','','2021-03-19 22:27:48','2021-03-19 22:27:48','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=masonry_gallery&#038;p=343',0,'masonry_gallery','',0),(344,1,'2021-03-19 21:21:06','2021-03-19 21:21:06','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Spinazzola\r\n76014 Province of Barletta-Andria-Trani, Italy\r\n40.962274, 16.160282[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]1474 Alexander Valley Road • Healdsburg, CA 95448-9003\r\n\r\n800-654-1213 • info@jordanwinery.com[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512480022799{padding-top: 150px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2>Team Of Winners</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"311\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Weddings</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Events</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 115px 0 0\"][vc_single_image image=\"324\" img_size=\"full\" qode_css_animation=\"\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h2>Availability</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3>red wine expert</h3>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta.[/vc_column_text][vc_empty_space height=\"23px\"][icons icon=\"fa-instagram\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.instagram.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-twitter\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://twitter.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][icons icon=\"fa-facebook\" size=\"fa-lg\" type=\"normal\" custom_size=\"17\" link=\"https://www.facebook.com/\" target=\"_blank\" icon_color=\"#000000\" icon_hover_color=\"#dfa057\" margin=\"0 17px 0 0\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 21:21:06','2021-03-19 21:21:06','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=344',0,'revision','',0),(346,1,'2021-03-19 21:30:52','2021-03-19 21:30:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Stay in Touch With Us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel. Vestibulum accumsan turpis sed condimentum ornare. Phasellus commodo dictum nulla, nec porttitor enim blandit quis. Sed suscipit congue metus, in tincidunt justo interdum sed.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"soho, new york\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 21:30:52','2021-03-19 21:30:52','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=346',0,'revision','',0),(347,1,'2021-03-19 21:32:18','2021-03-19 21:32:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,321,329,324,332,326,330,331,325\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 21:32:18','2021-03-19 21:32:18','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=347',0,'revision','',0),(348,1,'2021-03-19 21:34:11','2021-03-19 21:34:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">EVENTS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">AVAILABILITY</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 21:34:11','2021-03-19 21:34:11','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=348',0,'revision','',0),(349,1,'2021-03-19 21:35:21','2021-03-19 21:35:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">EVENTS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">AVAILABILITY</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','home draft','','draft','closed','closed','','home-draft','','','2021-05-06 20:24:57','2021-05-06 20:24:57','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=349',0,'page','',0),(350,1,'2021-03-19 21:35:21','2021-03-19 21:35:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">EVENTS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">AVAILABILITY</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','home draft','','inherit','closed','closed','','349-revision-v1','','','2021-03-19 21:35:21','2021-03-19 21:35:21','',349,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=350',0,'revision','',0),(351,1,'2021-03-19 21:36:55','2021-03-19 21:36:55','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 21:36:55','2021-03-19 21:36:55','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=351',0,'revision','',0),(352,1,'2021-03-19 21:41:28','2021-03-19 21:41:28','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 21:41:28','2021-03-19 21:41:28','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=352',0,'revision','',0),(353,1,'2021-03-19 21:58:03','2021-03-19 21:58:03','','Crest','','inherit','open','closed','','crest','','','2021-03-19 21:58:03','2021-03-19 21:58:03','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Crest.png',0,'attachment','image/png',0),(355,1,'2021-03-19 22:06:30','2021-03-19 22:06:30','','Hitched_Thrisk-Lodge-Barns','','inherit','open','closed','','hitched_thrisk-lodge-barns','','','2021-03-19 22:06:30','2021-03-19 22:06:30','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(356,1,'2021-03-19 22:07:01','2021-03-19 22:07:01','','Unveiled_Thirsk-Lodge-Barns','','inherit','open','closed','','unveiled_thirsk-lodge-barns','','','2021-03-19 22:07:01','2021-03-19 22:07:01','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(357,1,'2021-03-19 22:07:17','2021-03-19 22:07:17','','Coco_Thrisk-Lodge-Barns','','inherit','open','closed','','coco_thrisk-lodge-barns','','','2021-03-19 22:07:17','2021-03-19 22:07:17','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(358,1,'2021-03-19 22:07:37','2021-03-19 22:07:37','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:07:37','2021-03-19 22:07:37','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=358',0,'revision','',0),(359,1,'2021-03-19 22:15:25','2021-03-19 22:15:25','','Map-edited','','inherit','open','closed','','map-edited','','','2021-03-19 22:15:25','2021-03-19 22:15:25','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Map-edited.jpg',0,'attachment','image/jpeg',0),(360,1,'2021-03-19 22:16:06','2021-03-19 22:16:06','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\"][vc_column][vc_row_inner row_type=\"row\" type=\"full_width\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:16:06','2021-03-19 22:16:06','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=360',0,'revision','',0),(361,1,'2021-03-19 22:16:59','2021-03-19 22:16:59','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616192203309{padding-top: 4% !important;padding-bottom: 4% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"335\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:16:59','2021-03-19 22:16:59','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=361',0,'revision','',0),(362,1,'2021-03-19 22:18:39','2021-03-19 22:18:39','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616192298146{padding-top: 8% !important;padding-bottom: 8% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:18:39','2021-03-19 22:18:39','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=362',0,'revision','',0),(363,1,'2021-03-19 22:21:34','2021-03-19 22:21:34','','banqueting-hall_Thirsk-Lodge-Barn','','inherit','open','closed','','banqueting-hall_thirsk-lodge-barn','','','2021-03-19 22:21:34','2021-03-19 22:21:34','',340,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/banqueting-hall_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(364,1,'2021-03-19 22:22:06','2021-03-19 22:22:06','','Thirsk-Lodge-Barns-bride\'s-balcony','','inherit','open','closed','','thirsk-lodge-barns-brides-balcony','','','2021-03-19 22:22:06','2021-03-19 22:22:06','',341,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns-brides-balcony.jpg',0,'attachment','image/jpeg',0),(365,1,'2021-03-19 22:22:40','2021-03-19 22:22:40','','Thirsk-Lodge-Barn-Venue-illustration','','inherit','open','closed','','thirsk-lodge-barn-venue-illustration','','','2021-03-19 22:22:40','2021-03-19 22:22:40','',342,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg',0,'attachment','image/jpeg',0),(366,1,'2021-03-19 22:23:06','2021-03-19 22:23:06','','Thirsk-Lodge-Barn-Venue-illustration-2021','','inherit','open','closed','','thirsk-lodge-barn-venue-illustration-2021','','','2021-03-19 22:23:06','2021-03-19 22:23:06','',343,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration-2021.jpg',0,'attachment','image/jpeg',0),(367,1,'2021-03-19 22:25:21','2021-03-19 22:25:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616192298146{padding-top: 8% !important;padding-bottom: 8% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:25:21','2021-03-19 22:25:21','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=367',0,'revision','',0),(368,1,'2021-03-19 22:29:17','2021-03-19 22:29:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616192298146{padding-top: 8% !important;padding-bottom: 8% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:29:17','2021-03-19 22:29:17','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=368',0,'revision','',0),(369,1,'2021-03-19 22:33:10','2021-03-19 22:33:10','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:33:10','2021-03-19 22:33:10','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=369',0,'revision','',0),(370,1,'2021-03-19 22:34:25','2021-03-19 22:34:25','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:34:25','2021-03-19 22:34:25','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=370',0,'revision','',0),(371,1,'2021-03-19 22:42:35','2021-03-19 22:42:35','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}\"][vc_column][vc_row_inner row_type=\"row\" type=\"grid\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][/vc_column_inner][vc_column_inner width=\"2/3\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:42:35','2021-03-19 22:42:35','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=371',0,'revision','',0),(372,1,'2021-03-19 22:43:29','2021-03-19 22:43:29','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" background_image=\"359\" css=\".vc_custom_1616193187566{padding-top: 10% !important;padding-bottom: 10% !important;}\"][vc_column][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:43:29','2021-03-19 22:43:29','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=372',0,'revision','',0),(373,1,'2021-03-19 22:44:23','2021-03-19 22:44:23','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:44:23','2021-03-19 22:44:23','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=373',0,'revision','',0),(374,1,'2021-03-19 22:44:51','2021-03-19 22:44:51','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"933\" title=\"Closed\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"><b><u>click here</u></b></a> to see our Public Events</p>\r\n\r\n</div>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','publish','closed','closed','','availability','','','2021-05-13 10:22:46','2021-05-13 10:22:46','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=374',0,'page','',0),(375,1,'2021-03-19 22:44:51','2021-03-19 22:44:51','','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-03-19 22:44:51','2021-03-19 22:44:51','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=375',0,'revision','',0),(376,1,'2021-05-11 10:45:52','2021-03-19 22:45:15',' ','','','publish','closed','closed','','376','','','2021-05-11 10:45:52','2021-05-11 10:45:52','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=376',13,'nav_menu_item','',0),(377,1,'2021-03-19 22:51:35','2021-03-19 22:51:35','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 22:51:35','2021-03-19 22:51:35','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=377',0,'revision','',0),(381,1,'2021-03-19 22:54:16','2021-03-19 22:54:16','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','inherit','closed','closed','','1-revision-v1','','','2021-03-19 22:54:16','2021-03-19 22:54:16','',1,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=381',0,'revision','',0),(382,1,'2021-03-19 22:55:15','2021-03-19 22:55:15','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','inherit','closed','closed','','276-revision-v1','','','2021-03-19 22:55:15','2021-03-19 22:55:15','',276,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=382',0,'revision','',0),(383,1,'2021-03-19 22:55:36','2021-03-19 22:55:36',';dsf;sdjf;lsdjf;sljdf;lsjdf;lsjdf;lsdjfsjd','lsdfjlsdkjflksdjfsidj','','publish','open','open','','lsdfjlsdkjflksdjfsidj','','','2021-03-19 22:55:36','2021-03-19 22:55:36','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=383',0,'post','',0),(384,1,'2021-03-19 22:55:36','2021-03-19 22:55:36',';dsf;sdjf;lsdjf;sljdf;lsjdf;lsjdf;lsdjfsjd','lsdfjlsdkjflksdjfsidj','','inherit','closed','closed','','383-revision-v1','','','2021-03-19 22:55:36','2021-03-19 22:55:36','',383,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=384',0,'revision','',0),(386,1,'2021-03-19 22:57:54','2021-03-19 22:57:54','lkfns;ldfkhvad\'fhg\'doflghalkdfgh\'adklfghlkadfnglkadfkglkdafnglkafnglkadfnlkadfnblkadf','Another Title','','publish','open','open','','another-title','','','2021-03-19 22:57:54','2021-03-19 22:57:54','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=386',0,'post','',0),(387,1,'2021-03-19 22:57:54','2021-03-19 22:57:54','lkfns;ldfkhvad\'fhg\'doflghalkdfgh\'adklfghlkadfnglkadfkglkdafnglkafnglkadfnlkadfnblkadf','Another Title','','inherit','closed','closed','','386-revision-v1','','','2021-03-19 22:57:54','2021-03-19 22:57:54','',386,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=387',0,'revision','',0),(388,1,'2021-03-19 22:58:18','2021-03-19 22:58:18','xjs\'lkvha\'dfkjga\'lkdfjgkldafgl;kadfgdakflgnafdlkg','Another Blog post','','publish','open','open','','another-blog-post','','','2021-03-19 22:58:18','2021-03-19 22:58:18','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=388',0,'post','',0),(389,1,'2021-03-19 22:58:18','2021-03-19 22:58:18','xjs\'lkvha\'dfkjga\'lkdfjgkldafgl;kadfgdakflgnafdlkg','Another Blog post','','inherit','closed','closed','','388-revision-v1','','','2021-03-19 22:58:18','2021-03-19 22:58:18','',388,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=389',0,'revision','',0),(390,1,'2021-03-19 22:58:44','2021-03-19 22:58:44','sdkfhsdhfja;dlfha;ldsh;adkfgbad;kfjg','Olive Tree is here!','','publish','open','open','','olive-tree-is-here','','','2021-03-19 22:58:44','2021-03-19 22:58:44','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=390',0,'post','',0),(391,1,'2021-03-19 22:58:44','2021-03-19 22:58:44','sdkfhsdhfja;dlfha;ldsh;adkfgbad;kfjg','Olive Tree is here!','','inherit','closed','closed','','390-revision-v1','','','2021-03-19 22:58:44','2021-03-19 22:58:44','',390,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=391',0,'revision','',0),(393,1,'2021-03-19 23:01:30','2021-03-19 23:01:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"200x200\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-03-19 23:01:30','2021-03-19 23:01:30','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=393',0,'revision','',0),(394,1,'2021-03-19 23:02:08','2021-03-19 23:02:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-03-19 23:02:08','2021-03-19 23:02:08','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=394',0,'revision','',0),(396,1,'2021-03-19 23:08:53','2021-03-19 23:08:53','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]Thirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:\r\nletty@thirsklodgebarns.com</h5>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:\r\n07815 560782</h5>\r\n[/vc_column_text][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-03-19 23:08:53','2021-03-19 23:08:53','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=396',0,'revision','',0),(397,1,'2021-03-19 23:10:26','2021-03-19 23:10:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-03-19 23:10:26','2021-03-19 23:10:26','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=397',0,'revision','',0),(398,1,'2021-03-19 23:11:11','2021-03-19 23:11:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-03-19 23:11:11','2021-03-19 23:11:11','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=398',0,'revision','',0),(399,1,'2021-03-19 23:12:00','2021-03-19 23:12:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Gallery</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-03-19 23:12:00','2021-03-19 23:12:00','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=399',0,'revision','',0),(400,1,'2021-03-19 23:12:17','2021-03-19 23:12:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616195535878{padding-top: 20px !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Gallery</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512574936464{padding-top: 108px !important;padding-bottom: 80px !important;}\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-03-19 23:12:17','2021-03-19 23:12:17','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=400',0,'revision','',0),(401,1,'2021-03-19 23:15:14','2021-03-19 23:15:14','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 23:15:14','2021-03-19 23:15:14','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=401',0,'revision','',0),(402,1,'2021-03-19 23:16:42','2021-03-19 23:16:42','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-19 23:16:42','2021-03-19 23:16:42','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=402',0,'revision','',0),(403,1,'2021-03-20 07:59:01','2021-03-20 07:59:01','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]</p>\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','WEDDINGS','','publish','closed','closed','','weddings','','','2021-05-13 10:18:31','2021-05-13 10:18:31','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=403',0,'page','',0),(404,1,'2021-03-20 07:59:01','2021-03-20 07:59:01','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-03-20 07:59:01','2021-03-20 07:59:01','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=404',0,'revision','',0),(406,1,'2021-03-20 08:01:21','2021-03-20 08:01:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-03-20 08:01:21','2021-03-20 08:01:21','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=406',0,'revision','',0),(407,1,'2021-03-20 08:02:54','2021-03-20 08:02:54','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-03-20 08:02:54','2021-03-20 08:02:54','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=407',0,'revision','',0),(408,1,'2021-05-11 10:45:51','2021-03-20 08:03:53',' ','','','publish','closed','closed','','408','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=408',1,'nav_menu_item','',0),(409,1,'2021-03-20 08:04:50','2021-03-20 08:04:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-03-20 08:04:50','2021-03-20 08:04:50','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=409',0,'revision','',0),(410,1,'2021-03-20 08:05:41','2021-03-20 08:05:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1616227540739{padding-top: 92px !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-03-20 08:05:41','2021-03-20 08:05:41','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=410',0,'revision','',0),(411,1,'2021-03-20 08:07:38','2021-03-20 08:07:38','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-20 08:07:38','2021-03-20 08:07:38','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=411',0,'revision','',0),(412,1,'2021-03-20 08:08:09','2021-03-20 08:08:09','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-03-20 08:08:09','2021-03-20 08:08:09','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=412',0,'revision','',0),(413,1,'2021-03-20 08:12:21','2021-03-20 08:12:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','publish','closed','closed','','events','','','2021-05-11 09:35:34','2021-05-11 09:35:34','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=413',0,'page','',0),(414,1,'2021-03-20 08:12:21','2021-03-20 08:12:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-03-20 08:12:21','2021-03-20 08:12:21','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=414',0,'revision','',0),(416,1,'2021-03-20 08:13:55','2021-03-20 08:13:55','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][qode_blog_carousel_titled posts_shown=\"3\"][/vc_column][/vc_row]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-03-20 08:13:55','2021-03-20 08:13:55','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=416',0,'revision','',0),(417,1,'2021-05-11 10:45:51','2021-03-20 08:14:30',' ','','','publish','closed','closed','','417','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=417',6,'nav_menu_item','',0),(418,1,'2021-03-20 08:15:17','2021-03-20 08:15:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][masonry_blog order_by=\"title\" order=\"ASC\"][/vc_column][/vc_row]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-03-20 08:15:17','2021-03-20 08:15:17','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=418',0,'revision','',0),(419,1,'2021-03-20 08:15:45','2021-03-20 08:15:45','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-03-20 08:15:45','2021-03-20 08:15:45','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=419',0,'revision','',0),(421,1,'2021-03-20 08:17:51','2021-03-20 08:17:51','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-03-20 08:17:51','2021-03-20 08:17:51','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=421',0,'revision','',0),(424,1,'2021-03-20 08:19:23','2021-03-20 08:19:23','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-03-20 08:19:23','2021-03-20 08:19:23','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=424',0,'revision','',0),(425,1,'2021-03-20 08:20:07','2021-03-20 08:20:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][vc_column width=\"1/4\"][vc_single_image image=\"336\" img_size=\"400 x 400\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-03-20 08:20:07','2021-03-20 08:20:07','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=425',0,'revision','',0),(426,1,'2021-03-20 08:21:17','2021-03-20 08:21:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-03-20 08:21:17','2021-03-20 08:21:17','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=426',0,'revision','',0),(428,1,'2021-03-20 08:22:34','2021-03-20 08:22:34','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-03-20 08:22:34','2021-03-20 08:22:34','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=428',0,'revision','',0),(429,1,'2021-03-21 21:58:09','2021-03-21 21:58:09','','Thirsk-Lodge-Barn-Logo','','inherit','open','closed','','thirsk-lodge-barn-logo','','','2021-03-21 21:58:09','2021-03-21 21:58:09','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Logo.png',0,'attachment','image/png',0),(431,1,'2021-03-26 11:53:22','2021-03-26 11:53:22','[vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','parralax','','draft','closed','closed','','431-2','','','2021-05-06 20:25:51','2021-05-06 20:25:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=431',0,'page','',0),(432,1,'2021-03-26 11:53:02','2021-03-26 11:53:02','<p>[vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','','','inherit','closed','closed','','431-revision-v1','','','2021-03-26 11:53:02','2021-03-26 11:53:02','',431,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=432',0,'revision','',0),(433,1,'2021-03-30 15:45:04','2021-03-30 15:45:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"910\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY\r\nSUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR\r\n<strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"906\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT\r\nWEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING\r\nMONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"905\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING\r\nSUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','publish','closed','closed','','events-calendar','','','2021-05-13 11:17:03','2021-05-13 11:17:03','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=433',0,'page','',0),(434,1,'2021-03-30 15:45:04','2021-03-30 15:45:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Events &amp; Restaurant</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS & RESTAURANT','','inherit','closed','closed','','433-revision-v1','','','2021-03-30 15:45:04','2021-03-30 15:45:04','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=434',0,'revision','',0),(435,1,'2021-03-30 15:48:21','2021-03-30 15:48:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"832\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interested in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','publish','closed','closed','','private-hire','','','2021-05-11 15:39:07','2021-05-11 15:39:07','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=435',0,'page','',0),(436,1,'2021-03-30 15:48:21','2021-03-30 15:48:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Private Hire</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-03-30 15:48:21','2021-03-30 15:48:21','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=436',0,'revision','',0),(437,1,'2021-03-30 15:49:51','2021-03-30 15:49:51','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"10% 22% 10% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h3>Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"922\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','publish','closed','closed','','christmas','','','2021-05-13 10:24:42','2021-05-13 10:24:42','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=437',0,'page','',0),(438,1,'2021-03-30 15:49:51','2021-03-30 15:49:51','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Christmas</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-03-30 15:49:51','2021-03-30 15:49:51','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=438',0,'revision','',0),(440,1,'2021-03-30 15:51:18','2021-03-30 15:51:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"910\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.\r\n\r\nWith the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.\r\n\r\nWe can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','publish','closed','closed','','business','','','2021-05-13 10:21:41','2021-05-13 10:21:41','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=440',0,'page','',0),(441,1,'2021-03-30 15:51:18','2021-03-30 15:51:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Business</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-03-30 15:51:18','2021-03-30 15:51:18','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=441',0,'revision','',0),(442,1,'2021-05-11 10:45:52','2021-03-30 15:52:11',' ','','','publish','closed','closed','','442','','','2021-05-11 10:45:52','2021-05-11 10:45:52','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=442',9,'nav_menu_item','',0),(443,1,'2021-05-11 10:45:52','2021-03-30 15:52:11',' ','','','publish','closed','closed','','443','','','2021-05-11 10:45:52','2021-05-11 10:45:52','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=443',10,'nav_menu_item','',0),(444,1,'2021-05-11 10:45:51','2021-03-30 15:52:11',' ','','','publish','closed','closed','','444','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=444',8,'nav_menu_item','',0),(445,1,'2021-05-11 10:45:51','2021-03-30 15:52:11',' ','','','publish','closed','closed','','445','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=445',7,'nav_menu_item','',0),(447,1,'2021-03-30 15:54:33','2021-03-30 15:54:33','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]For weddings, this majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception.</p>\r\n<p>It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening.</p>\r\n<p>A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Dining Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have.</p>\r\n<p>There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree, our courtyard has a gorgeous Mediterranean feel to it. It is sheltered and gets the sun all day long, making it the perfect place for photos, drinks or a breath of fresh air.</p>\r\n<p>We offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"804\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room with soft furniture in which is a great escape for kids to watch TV or for your guests to pop their feet up.</p>\r\n<p>With stunning views of the meadow, the Wheelhouse is set just off the Main Barn and is a great escape for those guests wanting a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"694\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','publish','closed','closed','','the-barns','','','2021-05-11 15:44:16','2021-05-11 15:44:16','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=447',0,'page','',0),(448,1,'2021-03-30 15:54:33','2021-03-30 15:54:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-03-30 15:54:33','2021-03-30 15:54:33','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=448',0,'revision','',0),(450,1,'2021-03-30 15:56:22','2021-03-30 15:56:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','The Barns','','publish','closed','closed','','the-barns-2','','','2021-03-30 15:56:37','2021-03-30 15:56:37','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=450',0,'page','',0),(451,1,'2021-03-30 15:56:22','2021-03-30 15:56:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','The Barns','','inherit','closed','closed','','450-revision-v1','','','2021-03-30 15:56:22','2021-03-30 15:56:22','',450,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=451',0,'revision','',0),(452,1,'2021-03-30 15:58:31','2021-03-30 15:58:31','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"937\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]</p>\r\n','What\'s Included','','publish','closed','closed','','whats-included','','','2021-05-11 20:51:18','2021-05-11 20:51:18','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=452',0,'page','',0),(453,1,'2021-03-30 15:58:31','2021-03-30 15:58:31','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-03-30 15:58:31','2021-03-30 15:58:31','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=453',0,'revision','',0),(454,1,'2021-05-11 10:45:51','2021-03-30 15:59:39','','What’s Included','','publish','closed','closed','','454','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=454',3,'nav_menu_item','',0),(456,1,'2021-05-11 10:45:51','2021-03-30 15:59:39',' ','','','publish','closed','closed','','456','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=456',2,'nav_menu_item','',0),(457,1,'2021-03-30 16:01:13','2021-03-30 16:01:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620765143367{padding-top: 0px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','publish','closed','closed','','accommodation','','','2021-05-13 10:19:59','2021-05-13 10:19:59','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=457',0,'page','',0),(458,1,'2021-03-30 16:01:13','2021-03-30 16:01:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-03-30 16:01:13','2021-03-30 16:01:13','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=458',0,'revision','',0),(459,1,'2021-03-30 16:01:57','2021-03-30 16:01:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','FOOD & DRINKS','','publish','closed','closed','','food-drinks','','','2021-05-11 20:52:49','2021-05-11 20:52:49','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=459',0,'page','',0),(460,1,'2021-03-30 16:01:57','2021-03-30 16:01:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food & Drinks</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-03-30 16:01:57','2021-03-30 16:01:57','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=460',0,'revision','',0),(462,1,'2021-05-11 10:45:51','2021-03-30 16:02:43',' ','','','publish','closed','closed','','462','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=462',4,'nav_menu_item','',0),(463,1,'2021-05-11 10:45:51','2021-03-30 16:02:43',' ','','','publish','closed','closed','','463','','','2021-05-11 10:45:51','2021-05-11 10:45:51','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=463',5,'nav_menu_item','',0),(467,1,'2021-04-08 15:50:01','2021-04-08 15:50:01','','Thirsk-Lodge-Barns_logoforwebsite','','inherit','open','closed','','thirsk-lodge-barns_logoforwebsite','','','2021-04-08 15:50:01','2021-04-08 15:50:01','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Thirsk-Lodge-Barns_logoforwebsite.png',0,'attachment','image/png',0),(469,1,'2021-04-08 20:21:39','2021-04-08 20:21:39','<p>[vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]</p>\r\n<h2>Happy Customers</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Testimonial Banner','','publish','closed','closed','','testimonial-banner','','','2021-04-08 20:21:39','2021-04-08 20:21:39','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=469',0,'page','',0),(470,1,'2021-04-08 20:21:05','2021-04-08 20:21:05','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis pellentesque ultricies. Aenean venenatis sapien turpis, at porta neque consectetur vel.[/vc_column_text][vc_empty_space height=\"38px\"][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">WEDDINGS</h1>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">EVENTS</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h1 style=\"text-align: center;\">AVAILABILITY</h1>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"328,329,324,331,326,330\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1469198951503{background-color: #f6f6f6 !important;}\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\" background_color=\"#ffffff\"][vc_single_image image=\"311\" img_size=\"500x 500\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2>Hello, I’m Heather.</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]I\'m calm, unflappable, and super organised by nature – characteristics which have become finely tuned throughout my varied working life. I have over 15 years’ experience in Project Management, Events, Brand and Marketing across multiple sectors and diverse business dynamics.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>Here to help</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_column_text]\r\n<p style=\"text-align: center;\">Unlike a permanent employee, there are no associated overheads or office space requirements, and no agency fees linked with sourcing temporary contracts. I’ll work with you remotely on a freelance basis and you’ll only pay for the hours worked.</p>\r\n[/vc_column_text][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Services</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support\r\n\r\nMarketing, Brand, and Communication\r\n\r\nEvent planning\r\n\r\nLifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512489585077{padding-top: 112px !important;padding-bottom: 63px !important;}\"][vc_column offset=\"vc_col-lg-8 vc_col-md-12\"][vc_single_image image=\"328\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][vc_column_text]\r\n<h2>Get in touch with us</h2>\r\n[/vc_column_text][vc_empty_space height=\"7px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_column_text]We would love to show you around. Contact us to make a viewing appointment.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns Newsham Road Thirsk YO7 4DB\" map_height=\"500\" pin=\"86\" zoom=\"12\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][vc_empty_space height=\"53px\"][vc_column_text]Thirsk Lodge Barns\r\nNewsham Road\r\nThirsk\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"39px\"][vc_column_text]Mon- Fri 9-5pm\r\n07815 560782[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Testimonial Banner','','inherit','closed','closed','','469-revision-v1','','','2021-04-08 20:21:05','2021-04-08 20:21:05','',469,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=470',0,'revision','',0),(471,1,'2021-04-08 20:21:39','2021-04-08 20:21:39','<p>[vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]</p>\r\n<h2>Happy Customers</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Testimonial Banner','','inherit','closed','closed','','469-revision-v1','','','2021-04-08 20:21:39','2021-04-08 20:21:39','',469,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=471',0,'revision','',0),(474,1,'2021-04-16 10:19:04','2021-04-16 10:19:04','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Services</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support</p>\r\n<p>Marketing, Brand, and Communication</p>\r\n<p>Event planning</p>\r\n<p>Lifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Services</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support</p>\r\n<p>Marketing, Brand, and Communication</p>\r\n<p>Event planning</p>\r\n<p>Lifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','alternating squares','','draft','closed','closed','','alternating-squares','','','2021-05-13 10:20:59','2021-05-13 10:20:59','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=474',0,'page','',0),(475,1,'2021-04-16 10:19:04','2021-04-16 10:19:04','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Services</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support</p>\r\n<p>Marketing, Brand, and Communication</p>\r\n<p>Event planning</p>\r\n<p>Lifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Services</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Administration and business support</p>\r\n<p>Marketing, Brand, and Communication</p>\r\n<p>Event planning</p>\r\n<p>Lifestyle management[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#000000\" hover_color=\"#ffffff\" background_color=\"#ffffff\" hover_background_color=\"#000000\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#000000\" hover_border_color=\"#000000\" border_radius=\"2\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','alternating squares','','inherit','closed','closed','','474-revision-v1','','','2021-04-16 10:19:04','2021-04-16 10:19:04','',474,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=475',0,'revision','',0),(477,1,'2021-04-16 10:24:01','2021-04-16 10:24:01','','The-Barns','','inherit','open','closed','','the-barns-3','','','2021-04-16 10:24:01','2021-04-16 10:24:01','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/The-Barns.jpg',0,'attachment','image/jpeg',0),(478,1,'2021-04-16 10:28:30','2021-04-16 10:28:30','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!</p>\r\n<p>&nbsp;[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-04-16 10:28:30','2021-04-16 10:28:30','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=478',0,'revision','',0),(479,1,'2021-04-16 10:30:32','2021-04-16 10:30:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the fields.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-04-16 10:30:32','2021-04-16 10:30:32','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=479',0,'revision','',0),(480,1,'2021-04-16 10:31:12','2021-04-16 10:31:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the fields.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-04-16 10:31:12','2021-04-16 10:31:12','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=480',0,'revision','',0),(481,1,'2021-04-16 10:34:24','2021-04-16 10:34:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-04-16 10:34:24','2021-04-16 10:34:24','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=481',0,'revision','',0),(482,1,'2021-04-16 10:39:59','2021-04-16 10:39:59','','Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome','','inherit','open','closed','','olive-tree_wedding-venue_thirsk-lodge-barnhome','','','2021-04-16 10:39:59','2021-04-16 10:39:59','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Olive-Tree_Wedding-Venue_Thirsk-Lodge-BarnHome.jpg',0,'attachment','image/jpeg',0),(484,1,'2021-04-16 10:41:14','2021-04-16 10:41:14','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-04-16 10:41:14','2021-04-16 10:41:14','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=484',0,'revision','',0),(485,1,'2021-04-16 10:45:04','2021-04-16 10:45:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"366,365,364,363\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-16 10:45:04','2021-04-16 10:45:04','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=485',0,'revision','',0),(486,1,'2021-04-21 21:18:32','2021-04-21 21:18:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-21 21:18:32','2021-04-21 21:18:32','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=486',0,'revision','',0),(488,1,'2021-04-25 15:44:14','2021-04-25 15:44:14','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][wpsbc id=\"1\" title=\"yes\" legend=\"no\" language=\"auto\" display=\"12\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 15:44:14','2021-04-25 15:44:14','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=488',0,'revision','',0),(489,1,'2021-04-25 15:44:44','2021-04-25 15:44:44','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 15:44:44','2021-04-25 15:44:44','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=489',0,'revision','',0),(490,1,'2021-04-25 15:53:34','2021-04-25 15:53:34','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" columns=\"3\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 15:53:34','2021-04-25 15:53:34','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=490',0,'revision','',0),(491,1,'2021-04-25 16:02:36','2021-04-25 16:02:36','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:02:36','2021-04-25 16:02:36','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=491',0,'revision','',0),(492,1,'2021-04-25 16:04:41','2021-04-25 16:04:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][button size=\"large\" target=\"_self\" hover_type=\"default\" text_transform=\"capitalize\" font_style=\"normal\" font_weight=\"700\" custom_class=\"wpsbc-next\" text=\"Load More\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:04:41','2021-04-25 16:04:41','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=492',0,'revision','',0),(493,1,'2021-04-25 16:06:37','2021-04-25 16:06:37','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][button size=\"large\" target=\"_self\" hover_type=\"default\" text_transform=\"capitalize\" font_style=\"normal\" font_weight=\"700\" custom_class=\"wpsbc-next\" text=\"Load More\" link=\"#\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:06:37','2021-04-25 16:06:37','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=493',0,'revision','',0),(494,1,'2021-04-25 16:09:30','2021-04-25 16:09:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][vc_row_inner row_type=\"row\" type=\"full_width\" text_align=\"left\" css_animation=\"\" el_class=\"wpsbc-container\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][button size=\"large\" target=\"_self\" hover_type=\"default\" text_transform=\"capitalize\" font_style=\"normal\" font_weight=\"700\" custom_class=\"wpsbc-next\" text=\"Load More\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:09:30','2021-04-25 16:09:30','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=494',0,'revision','',0),(495,1,'2021-04-25 16:11:21','2021-04-25 16:11:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][vc_row_inner row_type=\"row\" type=\"full_width\" text_align=\"left\" css_animation=\"\" el_class=\"wpsbc-container\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner width=\"1/3\"][button size=\"big_large\" target=\"_self\" hover_type=\"default\" text_transform=\"capitalize\" font_style=\"normal\" font_weight=\"700\" custom_class=\"wpsbc-next\" text=\"Load More\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:11:21','2021-04-25 16:11:21','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=495',0,'revision','',0),(496,1,'2021-04-25 16:16:52','2021-04-25 16:16:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][vc_row_inner row_type=\"row\" type=\"full_width\" text_align=\"left\" css_animation=\"\"][vc_column_inner width=\"1/3\"][/vc_column_inner][vc_column_inner el_class=\"wpsbc-container\" width=\"1/3\"][button size=\"big_large\" target=\"_self\" hover_type=\"default\" text_transform=\"capitalize\" font_style=\"normal\" font_weight=\"700\" custom_class=\"wpsbc-next\" text=\"Load More\" link=\"#\"][/vc_column_inner][vc_column_inner width=\"1/3\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:16:52','2021-04-25 16:16:52','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=496',0,'revision','',0),(497,1,'2021-04-25 16:21:52','2021-04-25 16:21:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-25 16:21:52','2021-04-25 16:21:52','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=497',0,'revision','',0),(498,1,'2021-04-26 21:57:36','2021-04-26 21:57:36','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-04-26 21:57:36','2021-04-26 21:57:36','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=498',0,'revision','',0),(500,1,'2021-04-26 22:25:48','2021-04-26 22:25:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-26 22:25:48','2021-04-26 22:25:48','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=500',0,'revision','',0),(502,1,'2021-04-26 22:37:50','2021-04-26 22:37:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:37:50','2021-04-26 22:37:50','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=502',0,'revision','',0),(503,1,'2021-04-26 22:43:37','2021-04-26 22:43:37','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]</p>\r\n<h2>What\'s included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"25px\"][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-12\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_single_image image=\"308\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"129px\"][vc_column_text]</p>\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]On the day you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]</p>\r\n<ul>\r\n<li>Chairs for your ceremony in the Main Barn</li>\r\n<li>Large ceremony table</li>\r\n<li>Easel</li>\r\n<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n<li>Dining tables and chairs</li>\r\n<li>Optional pop-up bar in the courtyard</li>\r\n<li>Optional outdoor heaters in the ‘stables’</li>\r\n<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n<li>Glass hire</li>\r\n<li>Bar staff</li>\r\n<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n<p>[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h1 style=\"text-align: center;\">THE BARNS</h1>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h1 style=\"text-align: center;\">FOOD &amp; DRINKS</h1>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h1 style=\"text-align: center;\">ACCOMMODATION</h1>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]<br />\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:43:37','2021-04-26 22:43:37','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=503',0,'revision','',0),(504,1,'2021-04-26 22:45:24','2021-04-26 22:45:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_column_text]\r\n<h2>What\'s included</h2>\r\n[/vc_column_text][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"25px\"][vc_empty_space height=\"54px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-12\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"40px\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:45:24','2021-04-26 22:45:24','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=504',0,'revision','',0),(505,1,'2021-04-26 22:45:56','2021-04-26 22:45:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-12\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][vc_single_image image=\"31\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:45:56','2021-04-26 22:45:56','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=505',0,'revision','',0),(506,1,'2021-04-26 22:48:41','2021-04-26 22:48:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<h2>On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:48:41','2021-04-26 22:48:41','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=506',0,'revision','',0),(507,1,'2021-04-26 22:49:15','2021-04-26 22:49:15','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" side_padding=\"20/20\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<h2>On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:49:15','2021-04-26 22:49:15','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=507',0,'revision','',0),(508,1,'2021-04-26 22:49:50','2021-04-26 22:49:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" side_padding=\"20/20\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<h2>On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:49:50','2021-04-26 22:49:50','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=508',0,'revision','',0),(509,1,'2021-04-26 22:51:04','2021-04-26 22:51:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" side_padding=\"20/20\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<h2>On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:51:04','2021-04-26 22:51:04','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=509',0,'revision','',0),(510,1,'2021-04-26 22:52:19','2021-04-26 22:52:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1619477529302{padding-right: 40px !important;padding-left: 40px !important;}\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"38px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 22:52:19','2021-04-26 22:52:19','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=510',0,'revision','',0),(511,1,'2021-04-26 22:59:22','2021-04-26 22:59:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-26 22:59:22','2021-04-26 22:59:22','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=511',0,'revision','',0),(512,1,'2021-04-26 23:00:55','2021-04-26 23:00:55','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-26 23:00:55','2021-04-26 23:00:55','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=512',0,'revision','',0),(513,1,'2021-04-26 23:04:43','2021-04-26 23:04:43','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]</p>\r\n<ul>\r\n<li>Chairs for your ceremony in the Main Barn</li>\r\n<li>Large ceremony table</li>\r\n<li>Easel</li>\r\n<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n<li>Dining tables and chairs</li>\r\n<li>Optional pop-up bar in the courtyard</li>\r\n<li>Optional outdoor heaters in the ‘stables’</li>\r\n<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n<li>Glass hire</li>\r\n<li>Bar staff</li>\r\n<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n<p>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Think of me as an extension of you and your business as and when you need tailored support and expertise. I’ll give you time to focus on your priorities and core business needs and reassurance that you’re not neglecting tasks you simply don’t have time for or that slip down the to-do list.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-26 23:04:43','2021-04-26 23:04:43','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=513',0,'revision','',0),(514,1,'2021-04-26 23:13:39','2021-04-26 23:13:39','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-26 23:13:39','2021-04-26 23:13:39','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=514',0,'revision','',0),(515,1,'2021-04-26 23:14:04','2021-04-26 23:14:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-26 23:14:04','2021-04-26 23:14:04','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=515',0,'revision','',0),(516,1,'2021-04-27 10:11:55','2021-04-27 10:11:55','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in June 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-04-27 10:11:55','2021-04-27 10:11:55','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=516',0,'revision','',0),(517,1,'2021-04-27 10:46:52','2021-04-27 10:46:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_separator type=\"small\" position=\"left\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\r\n<ul>\r\n 	<li>Chairs for your ceremony in the Main Barn</li>\r\n 	<li>Large ceremony table</li>\r\n 	<li>Easel</li>\r\n 	<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n 	<li>Dining tables and chairs</li>\r\n 	<li>Optional pop-up bar in the courtyard</li>\r\n 	<li>Optional outdoor heaters in the ‘stables’</li>\r\n 	<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n 	<li>Glass hire</li>\r\n 	<li>Bar staff</li>\r\n 	<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n 	<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n 	<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n 	<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">We look forward to hearing from you.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 10:46:52','2021-04-27 10:46:52','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=517',0,'revision','',0),(518,1,'2021-04-27 10:48:24','2021-04-27 10:48:24','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<ul>\r\n<li>Chairs for your ceremony in the Main Barn</li>\r\n<li>Large ceremony table</li>\r\n<li>Easel</li>\r\n<li>Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</li>\r\n<li>Dining tables and chairs</li>\r\n<li>Optional pop-up bar in the courtyard</li>\r\n<li>Optional outdoor heaters in the ‘stables’</li>\r\n<li>Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</li>\r\n<li>Glass hire</li>\r\n<li>Bar staff</li>\r\n<li>Disco lights and sound system (however, we would recommend organising a band/DJ as well)</li>\r\n<li>TV and games in the Wheelhouse (great for keeping kids occupied!)</li>\r\n<li>Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</li>\r\n<li>You are welcome to set up the day before your wedding/event</li>\r\n</ul>\r\n<p>[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 10:48:24','2021-04-27 10:48:24','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=518',0,'revision','',0),(519,1,'2021-04-27 10:49:57','2021-04-27 10:49:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the ‘stables’\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar staff\r\n\r\n• Disco lights and sound system (however, we would recommend organising a band/DJ as well)\r\n\r\n• TV and games in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#000000\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 10:49:57','2021-04-27 10:49:57','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=519',0,'revision','',0),(520,1,'2021-04-27 11:06:09','2021-04-27 11:06:09','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the ‘stables’\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar staff\r\n\r\n• Disco lights and sound system (however, we would recommend organising a band/DJ as well)\r\n\r\n• TV and games in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 11:06:09','2021-04-27 11:06:09','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=520',0,'revision','',0),(521,1,'2021-04-27 11:07:24','2021-04-27 11:07:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in June 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-04-27 11:07:24','2021-04-27 11:07:24','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=521',0,'revision','',0),(522,1,'2021-04-27 11:14:41','2021-04-27 11:14:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site.[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:14:41','2021-04-27 11:14:41','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=522',0,'revision','',0),(523,1,'2021-04-27 11:15:50','2021-04-27 11:15:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:15:50','2021-04-27 11:15:50','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=523',0,'revision','',0),(524,1,'2021-04-27 11:16:48','2021-04-27 11:16:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:16:48','2021-04-27 11:16:48','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=524',0,'revision','',0),(525,1,'2021-04-27 11:21:17','2021-04-27 11:21:17','','Thirsk-Lodge-Barns-_Wedding-Cake','','inherit','open','closed','','thirsk-lodge-barns-_wedding-cake','','','2021-04-27 11:21:17','2021-04-27 11:21:17','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Thirsk-Lodge-Barns-_Wedding-Cake.jpg',0,'attachment','image/jpeg',0),(526,1,'2021-04-27 11:23:04','2021-04-27 11:23:04','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1613132647310{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"GET IN TOUCH\" hover_color=\"#ffffff\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"0\" color=\"#ffffff\" background_color=\"#c9a373\" hover_background_color=\"#e0b97f\" link=\"https://www.humdingers.org.uk/contact/\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"525\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:23:04','2021-04-27 11:23:04','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=526',0,'revision','',0),(527,1,'2021-04-27 11:23:56','2021-04-27 11:23:56','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"GET IN TOUCH\" hover_color=\"#ffffff\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"0\" color=\"#ffffff\" background_color=\"#c9a373\" hover_background_color=\"#e0b97f\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:23:56','2021-04-27 11:23:56','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=527',0,'revision','',0),(528,1,'2021-04-27 11:26:24','2021-04-27 11:26:24','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#16293a\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" background_color=\"transparent\" hover_background_color=\"transparent\" margin=\"0\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:26:24','2021-04-27 11:26:24','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=528',0,'revision','',0),(529,1,'2021-04-27 11:27:31','2021-04-27 11:27:31','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:27:31','2021-04-27 11:27:31','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=529',0,'revision','',0);
INSERT INTO `wpgb_posts` VALUES (530,1,'2021-04-27 11:28:17','2021-04-27 11:28:17','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 11:28:17','2021-04-27 11:28:17','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=530',0,'revision','',0),(531,1,'2021-04-27 11:29:27','2021-04-27 11:29:27','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the ‘stables’</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar staff</p>\r\n<p>• Disco lights and sound system (however, we would recommend organising a band/DJ as well)</p>\r\n<p>• TV and games in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 11:29:27','2021-04-27 11:29:27','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=531',0,'revision','',0),(532,1,'2021-04-27 11:31:35','2021-04-27 11:31:35','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 11:31:35','2021-04-27 11:31:35','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=532',0,'revision','',0),(533,1,'2021-05-11 20:28:43','2021-05-11 20:28:43','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-autosave-v1','','','2021-05-11 20:28:43','2021-05-11 20:28:43','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=533',0,'revision','',0),(534,1,'2021-04-27 11:34:47','2021-04-27 11:34:47','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.\r\n\r\nYou do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.\r\n\r\nFor weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Bar</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.\r\n\r\nFor weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.\r\n\r\nOur bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.\r\n\r\nWe have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.\r\n\r\nOur bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"326\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 11:34:47','2021-04-27 11:34:47','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=534',0,'revision','',0),(535,1,'2021-04-27 11:35:19','2021-04-27 11:35:19','','Wine List Bar','','inherit','open','closed','','wine-list-bar','','','2021-04-27 11:35:19','2021-04-27 11:35:19','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf',0,'attachment','application/pdf',0),(536,1,'2021-04-27 11:36:01','2021-04-27 11:36:01','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.</p>\r\n<p>You do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.</p>\r\n<p>For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Bar</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.</p>\r\n<p>For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.</p>\r\n<p>Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.</p>\r\n<p>We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.</p>\r\n<p>Our bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"326\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 11:36:01','2021-04-27 11:36:01','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=536',0,'revision','',0),(537,1,'2021-04-27 11:37:19','2021-04-27 11:37:19','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.</p>\r\n<p>You do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.</p>\r\n<p>For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Bar</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.</p>\r\n<p>For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.</p>\r\n<p>Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.</p>\r\n<p>We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.</p>\r\n<p>Our bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 11:37:19','2021-04-27 11:37:19','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=537',0,'revision','',0),(538,1,'2021-04-27 12:04:04','2021-04-27 12:04:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.\r\n\r\nYou do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.\r\n\r\nFor weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Bar</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.\r\n\r\nFor weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.\r\n\r\nOur bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.\r\n\r\nWe have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.\r\n\r\nOur bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 12:04:04','2021-04-27 12:04:04','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=538',0,'revision','',0),(539,1,'2021-04-27 12:05:39','2021-04-27 12:05:39','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.\r\n\r\nYou do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.\r\n\r\nFor weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Bar</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.\r\n\r\nFor weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.\r\n\r\nOur bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.\r\n\r\nWe have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.\r\n\r\nOur bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 12:05:39','2021-04-27 12:05:39','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=539',0,'revision','',0),(540,1,'2021-04-27 12:14:51','2021-04-27 12:14:51','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"129px\"][vc_column_text]</p>\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in June 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]</p>\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]</p>\r\n<h2>Happy Customers</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Home','','inherit','closed','closed','','271-revision-v1','','','2021-04-27 12:14:51','2021-04-27 12:14:51','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=540',0,'revision','',0),(542,1,'2021-04-27 12:16:17','2021-04-27 12:16:17','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"35\"][vc_column][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the ‘stables’</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar staff</p>\r\n<p>• Disco lights and sound system (however, we would recommend organising a band/DJ as well)</p>\r\n<p>• TV and games in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 12:16:17','2021-04-27 12:16:17','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=542',0,'revision','',0),(543,1,'2021-04-27 12:17:03','2021-04-27 12:17:03','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space height=\"35\"][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.</p>\r\n<p>You do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.</p>\r\n<p>For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Bar</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.</p>\r\n<p>For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.</p>\r\n<p>Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.</p>\r\n<p>We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.</p>\r\n<p>Our bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 12:17:03','2021-04-27 12:17:03','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=543',0,'revision','',0),(544,1,'2021-04-27 12:18:10','2021-04-27 12:18:10','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-04-27 12:18:10','2021-04-27 12:18:10','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=544',0,'revision','',0),(545,1,'2021-04-27 12:18:39','2021-04-27 12:18:39','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-04-27 12:18:39','2021-04-27 12:18:39','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=545',0,'revision','',0),(546,1,'2021-04-27 12:19:26','2021-04-27 12:19:26','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Gallery</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]</p>\r\n','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-04-27 12:19:26','2021-04-27 12:19:26','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=546',0,'revision','',0),(547,1,'2021-04-27 12:20:25','2021-04-27 12:20:25','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512568827249{padding-top: 92px !important;}\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``featureType``: ``administrative``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.country``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ff0000``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.province``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#b29e79``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: 65<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``on``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.man_made``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.natural.landcover``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: ``50``<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.business``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#d9d5c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdb6a8``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.place_of_worship``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``30``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``40``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ffff00``<br />\r\n},<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -97<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#a39e95``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]</p>\r\n<h2>Get in touch</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]</p>\r\n<h5>Address:</h5>\r\n<p>Thirsk Lodge Barns,<br />\r\nNewsham Road,<br />\r\nThirsk,<br />\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h5>Email:</h5>\r\n<p>letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h5>Phone:</h5>\r\n<p>07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]</p>\r\n','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-04-27 12:20:25','2021-04-27 12:20:25','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=547',0,'revision','',0),(548,1,'2021-04-27 12:21:12','2021-04-27 12:21:12','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``featureType``: ``administrative``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.country``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ff0000``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.province``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#b29e79``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: 65<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``on``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.man_made``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.natural.landcover``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: ``50``<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.business``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#d9d5c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdb6a8``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.place_of_worship``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``30``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``40``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ffff00``<br />\r\n},<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -97<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#a39e95``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]</p>\r\n<h2>Get in touch</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]</p>\r\n<h5>Address:</h5>\r\n<p>Thirsk Lodge Barns,<br />\r\nNewsham Road,<br />\r\nThirsk,<br />\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h5>Email:</h5>\r\n<p>letty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h5>Phone:</h5>\r\n<p>07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]</p>\r\n','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-04-27 12:21:12','2021-04-27 12:21:12','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=548',0,'revision','',0),(549,1,'2021-04-27 12:21:31','2021-04-27 12:21:31','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-27 12:21:31','2021-04-27 12:21:31','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=549',0,'revision','',0),(550,1,'2021-04-27 12:23:31','2021-04-27 12:23:31','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Events &amp; Restaurant</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','EVENTS & RESTAURANT','','inherit','closed','closed','','433-revision-v1','','','2021-04-27 12:23:31','2021-04-27 12:23:31','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=550',0,'revision','',0),(552,1,'2021-04-27 12:25:00','2021-04-27 12:25:00','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Business</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-04-27 12:25:00','2021-04-27 12:25:00','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=552',0,'revision','',0),(553,1,'2021-04-27 13:35:33','2021-04-27 13:35:33','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Christmas</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-04-27 13:35:33','2021-04-27 13:35:33','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=553',0,'revision','',0),(556,1,'2021-04-27 21:42:17','2021-04-27 21:42:17','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Dining Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the fields.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-04-27 21:42:17','2021-04-27 21:42:17','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=556',0,'revision','',0),(557,1,'2021-04-27 21:44:16','2021-04-27 21:44:16','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"20\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Dining Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the fields.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-04-27 21:44:16','2021-04-27 21:44:16','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=557',0,'revision','',0),(558,1,'2021-04-27 21:44:47','2021-04-27 21:44:47','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing the UK’s largest potted olive tree (check it out on our Instagram!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Dining Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the fields.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-04-27 21:44:47','2021-04-27 21:44:47','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=558',0,'revision','',0),(559,1,'2021-04-27 21:45:24','2021-04-27 21:45:24','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 21:45:24','2021-04-27 21:45:24','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=559',0,'revision','',0),(560,1,'2021-04-27 21:46:06','2021-04-27 21:46:06','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>A Stunning unique venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-04-27 21:46:06','2021-04-27 21:46:06','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=560',0,'revision','',0),(561,1,'2021-04-27 21:46:41','2021-04-27 21:46:41','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the ‘stables’</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar staff</p>\r\n<p>• Disco lights and sound system (however, we would recommend organising a band/DJ as well)</p>\r\n<p>• TV and games in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 21:46:41','2021-04-27 21:46:41','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=561',0,'revision','',0),(562,1,'2021-04-27 21:47:16','2021-04-27 21:47:16','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the ‘stables’</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar staff</p>\r\n<p>• Disco lights and sound system (however, we would recommend organising a band/DJ as well)</p>\r\n<p>• TV and games in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 21:47:16','2021-04-27 21:47:16','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=562',0,'revision','',0),(563,1,'2021-04-27 21:48:15','2021-04-27 21:48:15','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Whats Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the ‘stables’</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar staff</p>\r\n<p>• Disco lights and sound system (however, we would recommend organising a band/DJ as well)</p>\r\n<p>• TV and games in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Whats Included','','inherit','closed','closed','','452-revision-v1','','','2021-04-27 21:48:15','2021-04-27 21:48:15','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=563',0,'revision','',0),(564,1,'2021-04-27 21:49:44','2021-04-27 21:49:44','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie &amp; mash and afternoon teas, to fine dining, sharing platters and BBQs.</p>\r\n<p>You do not have to use one of our recommended caterers however, should you wish to choose someone more suitable to style and budget.</p>\r\n<p>For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Bar</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We manage our own Bar; and before each event we will talk through drinks options with you.</p>\r\n<p>For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.</p>\r\n<p>Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options.</p>\r\n<p>We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.</p>\r\n<p>Our bar staff is included in the Barn Hire price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-04-27 21:49:44','2021-04-27 21:49:44','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=564',0,'revision','',0),(565,1,'2021-04-27 21:51:36','2021-04-27 21:51:36','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-04-27 21:51:36','2021-04-27 21:51:36','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=565',0,'revision','',0),(566,1,'2021-04-27 21:52:22','2021-04-27 21:52:22','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-04-27 21:52:22','2021-04-27 21:52:22','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=566',0,'revision','',0),(567,1,'2021-04-27 21:52:55','2021-04-27 21:52:55','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"316\"]</p>\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-04-27 21:52:55','2021-04-27 21:52:55','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=567',0,'revision','',0),(569,1,'2021-04-27 21:53:45','2021-04-27 21:53:45','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Gallery</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]</p>\r\n','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-04-27 21:53:45','2021-04-27 21:53:45','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=569',0,'revision','',0),(570,1,'2021-04-27 21:54:35','2021-04-27 21:54:35','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row]</p>\r\n','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-04-27 21:54:35','2021-04-27 21:54:35','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=570',0,'revision','',0),(574,1,'2021-05-04 12:37:14','2021-05-04 12:37:14','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-04 12:37:14','2021-05-04 12:37:14','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=574',0,'revision','',0),(575,1,'2021-05-04 12:42:36','2021-05-04 12:42:36','','Thirsk-Lodge-Barns_Brides-Balcony','','inherit','open','closed','','thirsk-lodge-barns_brides-balcony','','','2021-05-04 12:42:36','2021-05-04 12:42:36','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Brides-Balcony.jpg',0,'attachment','image/jpeg',0),(576,1,'2021-05-04 12:43:04','2021-05-04 12:43:04','','Thirsk-Lodge-Barn-banqueting-hall','','inherit','open','closed','','thirsk-lodge-barn-banqueting-hall','','','2021-05-04 12:43:04','2021-05-04 12:43:04','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn-banqueting-hall.jpg',0,'attachment','image/jpeg',0),(578,1,'2021-05-04 12:43:25','2021-05-04 12:43:25','','Thirsk-Lodge-Barns_courtyard','','inherit','open','closed','','thirsk-lodge-barns_courtyard','','','2021-05-04 12:43:25','2021-05-04 12:43:25','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_courtyard.jpg',0,'attachment','image/jpeg',0),(579,1,'2021-05-04 12:43:45','2021-05-04 12:43:45','','Thirsk-Lodge-Barn-VIP-Room','','inherit','open','closed','','thirsk-lodge-barn-vip-room','','','2021-05-04 12:43:45','2021-05-04 12:43:45','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn-VIP-Room.jpg',0,'attachment','image/jpeg',0),(580,1,'2021-05-04 12:44:59','2021-05-04 12:44:59','','Thirsk-Lodge-Barns_WheelHouse','','inherit','open','closed','','thirsk-lodge-barns_wheelhouse','','','2021-05-04 12:44:59','2021-05-04 12:44:59','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_WheelHouse.jpg',0,'attachment','image/jpeg',0),(581,1,'2021-05-04 12:45:10','2021-05-04 12:45:10','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"575\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"579\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-04 12:45:10','2021-05-04 12:45:10','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=581',0,'revision','',0),(582,1,'2021-05-04 12:47:37','2021-05-04 12:47:37','','Thirsk-Lodge-Barns_Brides-Balcony','','inherit','open','closed','','thirsk-lodge-barns_brides-balcony-2','','','2021-05-04 12:47:37','2021-05-04 12:47:37','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Brides-Balcony-1.jpg',0,'attachment','image/jpeg',0),(583,1,'2021-05-04 12:47:43','2021-05-04 12:47:43','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"323\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"579\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-04 12:47:43','2021-05-04 12:47:43','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=583',0,'revision','',0),(584,1,'2021-05-04 12:51:42','2021-05-04 12:51:42','','Thirsk-Lodge-Barn_Food-Drinks','','inherit','open','closed','','thirsk-lodge-barn_food-drinks','','','2021-05-04 12:51:42','2021-05-04 12:51:42','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks.jpg',0,'attachment','image/jpeg',0),(585,1,'2021-05-04 12:51:52','2021-05-04 12:51:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">The Barns</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"579\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-04 12:51:52','2021-05-04 12:51:52','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=585',0,'revision','',0),(587,1,'2021-05-04 12:52:45','2021-05-04 12:52:45','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in June 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-04 12:52:45','2021-05-04 12:52:45','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=587',0,'revision','',0),(588,1,'2021-05-04 12:55:55','2021-05-04 12:55:55','','Thirsk-Lodge-Barns_wedding-ready','','inherit','open','closed','','thirsk-lodge-barns_wedding-ready','','','2021-05-04 12:55:55','2021-05-04 12:55:55','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_wedding-ready.jpg',0,'attachment','image/jpeg',0),(589,1,'2021-05-04 12:56:01','2021-05-04 12:56:01','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-04 12:56:01','2021-05-04 12:56:01','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=589',0,'revision','',0),(590,1,'2021-05-04 12:58:51','2021-05-04 12:58:51','','EVENTS_Thirsk-Lodge-Barns','','inherit','open','closed','','events_thirsk-lodge-barns','','','2021-05-04 12:58:51','2021-05-04 12:58:51','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(591,1,'2021-05-04 13:00:28','2021-05-04 13:00:28','','WeddingsTab_Thirsk-Lodge-Barns','','inherit','open','closed','','weddingstab_thirsk-lodge-barns','','','2021-05-04 13:00:28','2021-05-04 13:00:28','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/WeddingsTab_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(592,1,'2021-05-04 13:00:35','2021-05-04 13:00:35','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-04 13:00:35','2021-05-04 13:00:35','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=592',0,'revision','',0),(593,1,'2021-05-04 13:02:13','2021-05-04 13:02:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-04 13:02:13','2021-05-04 13:02:13','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=593',0,'revision','',0),(595,1,'2021-05-04 13:06:38','2021-05-04 13:06:38','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-04 13:06:38','2021-05-04 13:06:38','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=595',0,'revision','',0),(596,1,'2021-05-04 13:17:30','2021-05-04 13:17:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list <b>here</b>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-04 13:17:30','2021-05-04 13:17:30','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=596',0,'revision','',0),(597,1,'2021-05-04 13:17:50','2021-05-04 13:17:50','','Wine List Bar','','inherit','open','closed','','wine-list-bar-2','','','2021-05-04 13:17:50','2021-05-04 13:17:50','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf',0,'attachment','application/pdf',0),(598,1,'2021-05-04 13:18:33','2021-05-04 13:18:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">PRICES AND PACKAGES\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/04/Wine-List-Bar.pdf\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-04 13:18:33','2021-05-04 13:18:33','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=598',0,'revision','',0),(599,1,'2021-05-04 13:20:27','2021-05-04 13:20:27','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h3>\r\n[/vc_column_text][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-04 13:20:27','2021-05-04 13:20:27','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=599',0,'revision','',0),(600,1,'2021-05-04 13:21:22','2021-05-04 13:21:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h3>\r\n[/vc_column_text][vc_column_text]\r\n<h4><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h4>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-04 13:21:22','2021-05-04 13:21:22','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=600',0,'revision','',0),(601,1,'2021-05-04 13:23:03','2021-05-04 13:23:03','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-04 13:23:03','2021-05-04 13:23:03','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=601',0,'revision','',0),(602,1,'2021-05-04 13:30:10','2021-05-04 13:30:10','','Thirsk-Lodge-Barn_Food','','inherit','open','closed','','thirsk-lodge-barn_food','','','2021-05-04 13:30:10','2021-05-04 13:30:10','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg',0,'attachment','image/jpeg',0),(603,1,'2021-05-04 13:30:57','2021-05-04 13:30:57','','Thirsk-Lodge-Barn_Food-Drinks_Bar','','inherit','open','closed','','thirsk-lodge-barn_food-drinks_bar','','','2021-05-04 13:30:57','2021-05-04 13:30:57','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg',0,'attachment','image/jpeg',0),(604,1,'2021-05-04 13:31:07','2021-05-04 13:31:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHAT\"S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-04 13:31:07','2021-05-04 13:31:07','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=604',0,'revision','',0),(605,1,'2021-05-04 13:32:59','2021-05-04 13:32:59','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_masonry_gallery order=\"DESC\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-04 13:32:59','2021-05-04 13:32:59','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=605',0,'revision','',0),(606,1,'2021-05-04 13:34:12','2021-05-04 13:34:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522695779{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1619522849698{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-04 13:34:12','2021-05-04 13:34:12','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=606',0,'revision','',0),(608,1,'2021-05-04 14:21:49','2021-05-04 14:21:49','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-04 14:21:49','2021-05-04 14:21:49','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=608',0,'revision','',0),(609,1,'2021-05-06 11:07:49','2021-05-06 11:07:49','','Weddings-and-Thirsk-LodgeBarn','','inherit','open','closed','','weddings-and-thirsk-lodgebarn','','','2021-05-06 11:07:49','2021-05-06 11:07:49','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Weddings-and-Thirsk-LodgeBarn.jpg',0,'attachment','image/jpeg',0),(610,1,'2021-05-06 11:07:57','2021-05-06 11:07:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-06 11:07:57','2021-05-06 11:07:57','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=610',0,'revision','',0),(611,1,'2021-05-06 11:08:34','2021-05-06 11:08:34','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Footer','','draft','closed','closed','','footer','','','2021-05-06 20:24:49','2021-05-06 20:24:49','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=611',0,'page','',0),(612,1,'2021-05-06 11:08:34','2021-05-06 11:08:34','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Footer','','inherit','closed','closed','','611-revision-v1','','','2021-05-06 11:08:34','2021-05-06 11:08:34','',611,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=612',0,'revision','',0),(613,1,'2021-05-06 11:10:29','2021-05-06 11:10:29','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the ‘stables’\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar staff\r\n\r\n• Disco lights and sound system (however, we would recommend organising a band/DJ as well)\r\n\r\n• TV and games in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:10:29','2021-05-06 11:10:29','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=613',0,'revision','',0),(614,1,'2021-05-11 20:33:59','2021-05-11 20:33:59','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"937\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-autosave-v1','','','2021-05-11 20:33:59','2021-05-11 20:33:59','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=614',0,'revision','',0),(615,1,'2021-05-06 11:12:58','2021-05-06 11:12:58','','The-Barns_Thirks-Lodge-Barns','','inherit','open','closed','','the-barns_thirks-lodge-barns','','','2021-05-06 11:12:58','2021-05-06 11:12:58','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(616,1,'2021-05-06 11:13:18','2021-05-06 11:13:18','','Wedding-Breakfast-at-Thirks-Lodge-Barns','','inherit','open','closed','','wedding-breakfast-at-thirks-lodge-barns','','','2021-05-06 11:13:18','2021-05-06 11:13:18','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(617,1,'2021-05-06 11:14:15','2021-05-06 11:14:15','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]...you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment, as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the ‘stables’\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar staff\r\n\r\n• Disco lights and sound system (however, we would recommend organising a band/DJ as well)\r\n\r\n• TV and games in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the Dressing Room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n• You are welcome to set up the day before your wedding/event[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">We look forward to discussing your requirements with you.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"312\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:14:15','2021-05-06 11:14:15','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=617',0,'revision','',0),(618,1,'2021-05-06 11:15:56','2021-05-06 11:15:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-06 11:15:56','2021-05-06 11:15:56','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=618',0,'revision','',0),(619,1,'2021-05-06 11:16:59','2021-05-06 11:16:59','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-06 11:16:59','2021-05-06 11:16:59','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=619',0,'revision','',0),(620,1,'2021-05-06 11:17:41','2021-05-06 11:17:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-06 11:17:41','2021-05-06 11:17:41','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=620',0,'revision','',0),(623,1,'2021-05-06 11:19:44','2021-05-06 11:19:44','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"328\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299981379{margin-right: 4% !important;margin-left: 4px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:19:44','2021-05-06 11:19:44','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=623',0,'revision','',0),(624,1,'2021-05-06 11:21:04','2021-05-06 11:21:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"328\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"584\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:21:04','2021-05-06 11:21:04','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=624',0,'revision','',0),(625,1,'2021-05-06 11:24:33','2021-05-06 11:24:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column css=\".vc_custom_1526893414684{margin-top: -36px !important;}\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 16% 0px\" item_padding_1280_1440=\"0px 16% 0px\" item_padding_1024_1280=\"0px 16% 0px\" item_padding_768_1024=\"0px 8% 0px\" item_padding_600_768=\"0px 0% 0px\" item_padding_480_600=\"0px 0% 0px\" item_padding_480=\"0px 0% 0px\"][vc_empty_space height=\"42px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"312\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:24:33','2021-05-06 11:24:33','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=625',0,'revision','',0),(626,1,'2021-05-06 11:29:56','2021-05-06 11:29:56','','Thirsk-Lodge-Barns_Accommodation','','inherit','open','closed','','thirsk-lodge-barns_accommodation','','','2021-05-06 11:29:56','2021-05-06 11:29:56','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg',0,'attachment','image/jpeg',0),(627,1,'2021-05-06 11:30:43','2021-05-06 11:30:43','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"328\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"584\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:30:43','2021-05-06 11:30:43','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=627',0,'revision','',0),(628,1,'2021-05-06 11:32:39','2021-05-06 11:32:39','','Food-&-Drinks_Thirsk-Lodge-Barns','','inherit','open','closed','','food-drinks_thirsk-lodge-barns','','','2021-05-06 11:32:39','2021-05-06 11:32:39','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(630,1,'2021-05-06 11:33:46','2021-05-06 11:33:46','','What\'s-Included_Thirsk-Lodge-Barns','','inherit','open','closed','','whats-included_thirsk-lodge-barns','','','2021-05-06 11:33:46','2021-05-06 11:33:46','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Whats-Included_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(631,1,'2021-05-06 11:34:02','2021-05-06 11:34:02','','Food-&-Drinks_Thirsk-Lodge-Barns','','inherit','open','closed','','food-drinks_thirsk-lodge-barns-2','','','2021-05-06 11:34:02','2021-05-06 11:34:02','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg',0,'attachment','image/jpeg',0),(632,1,'2021-05-06 11:34:08','2021-05-06 11:34:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"316\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:34:08','2021-05-06 11:34:08','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=632',0,'revision','',0),(633,1,'2021-05-06 11:34:57','2021-05-06 11:34:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#16293a\" hover_border_color=\"#16293a\" border_radius=\"0\" color=\"#16293a\" hover_background_color=\"#16293a\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:34:57','2021-05-06 11:34:57','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=633',0,'revision','',0),(634,1,'2021-05-06 11:36:11','2021-05-06 11:36:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"335,331,329,326,324\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:36:11','2021-05-06 11:36:11','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=634',0,'revision','',0),(635,1,'2021-05-06 11:40:08','2021-05-06 11:40:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"615,576,578,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:40:08','2021-05-06 11:40:08','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=635',0,'revision','',0),(637,1,'2021-05-06 11:40:57','2021-05-06 11:40:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"576,578,615,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 11:40:57','2021-05-06 11:40:57','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=637',0,'revision','',0),(638,1,'2021-05-06 11:43:08','2021-05-06 11:43:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</h3>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n[/vc_column_text][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"312\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:43:08','2021-05-06 11:43:08','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=638',0,'revision','',0),(639,1,'2021-05-06 11:44:29','2021-05-06 11:44:29','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"312\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:44:29','2021-05-06 11:44:29','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=639',0,'revision','',0),(640,1,'2021-05-06 11:45:24','2021-05-06 11:45:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"309\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:45:24','2021-05-06 11:45:24','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=640',0,'revision','',0),(641,1,'2021-05-06 11:47:13','2021-05-06 11:47:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 11:47:13','2021-05-06 11:47:13','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=641',0,'revision','',0),(642,1,'2021-05-06 11:48:13','2021-05-06 11:48:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#243652\" hover_border_color=\"#243652\" border_radius=\"0\" color=\"#243652\" hover_background_color=\"#243652\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 11:48:13','2021-05-06 11:48:13','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=642',0,'revision','',0),(643,1,'2021-05-06 11:48:52','2021-05-06 11:48:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"MENU\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 11:48:52','2021-05-06 11:48:52','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=643',0,'revision','',0),(644,1,'2021-05-06 11:50:21','2021-05-06 11:50:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Events</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-06 11:50:21','2021-05-06 11:50:21','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=644',0,'revision','',0),(645,1,'2021-05-06 11:51:45','2021-05-06 11:51:45','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"600 x 600\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 11:51:45','2021-05-06 11:51:45','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=645',0,'revision','',0),(647,1,'2021-05-06 11:57:12','2021-05-06 11:57:12','','Planning-your-Wedding-at-Thirsk-Lodge-Barns','','inherit','open','closed','','planning-your-wedding-at-thirsk-lodge-barns','','','2021-05-06 11:57:12','2021-05-06 11:57:12','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Planning-your-Wedding-at-Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(648,1,'2021-05-06 11:59:04','2021-05-06 11:59:04','','What\'s-Included_Thirsk-Lodge-Barns','','inherit','open','closed','','whats-included_thirsk-lodge-barns-2','','','2021-05-06 11:59:04','2021-05-06 11:59:04','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Whats-Included_Thirsk-Lodge-Barns-1.jpg',0,'attachment','image/jpeg',0),(649,1,'2021-05-06 11:59:10','2021-05-06 11:59:10','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 11:59:10','2021-05-06 11:59:10','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=649',0,'revision','',0),(650,1,'2021-05-06 12:00:29','2021-05-06 12:00:29','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS<br />\r\n</span></h2>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 12:00:29','2021-05-06 12:00:29','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=650',0,'revision','',0),(651,1,'2021-05-06 12:01:01','2021-05-06 12:01:01','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS<br />\r\n</span></h2>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#243652\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 12:01:01','2021-05-06 12:01:01','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=651',0,'revision','',0),(652,1,'2021-05-06 12:23:23','2021-05-06 12:23:23','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row]</p>\r\n','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 12:23:23','2021-05-06 12:23:23','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=652',0,'revision','',0),(653,1,'2021-05-06 12:29:34','2021-05-06 12:29:34','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Food &amp; Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Catering</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]</p>\r\n<h2>Drinks</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS<br />\r\n</span></h2>\r\n<p>[/vc_column_text][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Food & Drinks','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 12:29:34','2021-05-06 12:29:34','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=653',0,'revision','',0),(654,1,'2021-05-06 12:33:19','2021-05-06 12:33:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">We have on site accommodation to sleep 12 guests in 6 double bedrooms.</h2>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:33:19','2021-05-06 12:33:19','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=654',0,'revision','',0),(656,1,'2021-05-06 12:36:08','2021-05-06 12:36:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h2>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:36:08','2021-05-06 12:36:08','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=656',0,'revision','',0),(657,1,'2021-05-06 12:36:43','2021-05-06 12:36:43','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Events &amp; Restaurant</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS & RESTAURANT','','inherit','closed','closed','','433-revision-v1','','','2021-05-06 12:36:43','2021-05-06 12:36:43','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=657',0,'revision','',0),(659,1,'2021-05-06 12:37:28','2021-05-06 12:37:28','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Business</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 12:37:28','2021-05-06 12:37:28','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=659',0,'revision','',0),(660,1,'2021-05-06 12:39:22','2021-05-06 12:39:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','Contact','','inherit','closed','closed','','164-revision-v1','','','2021-05-06 12:39:22','2021-05-06 12:39:22','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=660',0,'revision','',0),(661,1,'2021-05-06 12:39:37','2021-05-06 12:39:37','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Availability</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 12:39:37','2021-05-06 12:39:37','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=661',0,'revision','',0),(662,1,'2021-05-06 12:40:15','2021-05-06 12:40:15','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-06 12:40:15','2021-05-06 12:40:15','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=662',0,'revision','',0),(663,1,'2021-05-06 12:41:46','2021-05-06 12:41:46','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">Contact</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row]\r\n[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-06 12:41:46','2021-05-06 12:41:46','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=663',0,'revision','',0),(665,1,'2021-05-06 12:42:24','2021-05-06 12:42:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Weddings</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"576,578,615,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]\r\n[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 12:42:24','2021-05-06 12:42:24','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=665',0,'revision','',0),(666,1,'2021-05-06 12:43:06','2021-05-06 12:43:06','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]\r\n','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 12:43:06','2021-05-06 12:43:06','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=666',0,'revision','',0),(667,1,'2021-05-06 12:43:58','2021-05-06 12:43:58','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">What\'s Included</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 12:43:58','2021-05-06 12:43:58','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=667',0,'revision','',0),(668,1,'2021-05-06 12:46:16','2021-05-06 12:46:16','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n<p>[/vc_column_text][vc_empty_space][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n<p>[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:46:16','2021-05-06 12:46:16','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=668',0,'revision','',0),(669,1,'2021-05-06 12:47:15','2021-05-06 12:47:15','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\" css=\".vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"left\" full_screen_section_height=\"no\" css=\".vc_custom_1620305220196{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:47:15','2021-05-06 12:47:15','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=669',0,'revision','',0),(670,1,'2021-05-06 12:48:18','2021-05-06 12:48:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\" css=\".vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"left\" full_screen_section_height=\"no\" css=\".vc_custom_1620305296305{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:48:18','2021-05-06 12:48:18','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=670',0,'revision','',0),(671,1,'2021-05-06 12:48:36','2021-05-06 12:48:36','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\" css=\".vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"left\" full_screen_section_height=\"no\" css=\".vc_custom_1620305313911{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:48:36','2021-05-06 12:48:36','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=671',0,'revision','',0),(672,1,'2021-05-06 12:49:16','2021-05-06 12:49:16','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\" css=\".vc_custom_1620305234041{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_column_text]\r\n<h2 style=\"text-align: center;\">Accommodation</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620305354881{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 12:49:16','2021-05-06 12:49:16','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=672',0,'revision','',0),(673,1,'2021-05-06 20:18:26','2021-05-06 20:18:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_image=\"579\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-06 20:18:26','2021-05-06 20:18:26','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=673',0,'revision','',0),(674,1,'2021-05-06 20:18:46','2021-05-06 20:18:46','<!-- wp:paragraph -->\r\n<p>You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.</p>\r\n<!-- /wp:paragraph -->','About','','inherit','closed','closed','','6-autosave-v1','','','2021-05-06 20:18:46','2021-05-06 20:18:46','',6,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=674',0,'revision','',0),(675,1,'2021-05-06 20:19:48','2021-05-06 20:19:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620305354881{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 20:19:48','2021-05-06 20:19:48','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=675',0,'revision','',0),(676,1,'2021-05-06 20:20:17','2021-05-06 20:20:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 20:20:17','2021-05-06 20:20:17','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=676',0,'revision','',0),(677,1,'2021-05-06 20:20:42','2021-05-06 20:20:42','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 20:20:42','2021-05-06 20:20:42','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=677',0,'revision','',0),(678,1,'2021-05-06 20:21:32','2021-05-06 20:21:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-06 20:21:32','2021-05-06 20:21:32','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=678',0,'revision','',0),(679,1,'2021-05-06 20:23:07','2021-05-06 20:23:07','<p>&nbsp;</p>\r\n<!-- wp:heading {\"align\":\"wide\",\"fontSize\":\"gigantic\",\"style\":{\"typography\":{\"lineHeight\":\"1.1\"}}} -->\r\n<h2 class=\"alignwide has-text-align-wide has-gigantic-font-size\" style=\"line-height: 1.1;\">Create your website with blocks</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:columns {\"verticalAlignment\":\"center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-columns-overlap\"} -->\r\n<div class=\"wp-block-columns alignwide are-vertically-aligned-center is-style-twentytwentyone-columns-overlap\"><!-- wp:column {\"verticalAlignment\":\"center\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\"} -->\r\n<figure class=\"wp-block-image alignfull size-large\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg\" alt=\"“Roses Trémières” by Berthe Morisot\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:image {\"align\":\"full\",\"sizeSlug\":\"large\",\"className\":\"is-style-twentytwentyone-image-frame\"} -->\r\n<figure class=\"wp-block-image alignfull size-large is-style-twentytwentyone-image-frame\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg\" alt=\"“In the Bois de Boulogne” by Berthe Morisot\" /></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"center\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-center\"><!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:image {\"sizeSlug\":\"large\",\"className\":\"alignfull size-full is-style-twentytwentyone-border\"} -->\r\n<figure class=\"wp-block-image size-large alignfull size-full is-style-twentytwentyone-border\"><img src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg\" alt=\"“Young Woman in Mauve” by Berthe Morisot\" /></figure>\r\n<!-- /wp:image --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:spacer {\"height\":50} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 50px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:columns {\"verticalAlignment\":\"top\",\"align\":\"wide\"} -->\r\n<div class=\"wp-block-columns alignwide are-vertically-aligned-top\"><!-- wp:column {\"verticalAlignment\":\"top\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\r\n<h3>Add block patterns</h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Block patterns are pre-designed groups of blocks. To add one, select the Add Block button [+] in the toolbar at the top of the editor. Switch to the Patterns tab underneath the search bar, and choose a pattern.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\r\n<h3>Frame your images</h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Twenty Twenty-One includes stylish borders for your content. With an Image block selected, open the \"Styles\" panel within the Editor sidebar. Select the \"Frame\" block style to activate it.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column {\"verticalAlignment\":\"top\"} -->\r\n<div class=\"wp-block-column is-vertically-aligned-top\"><!-- wp:heading {\"level\":3} -->\r\n<h3>Overlap columns</h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Twenty Twenty-One also includes an overlap style for column blocks. With a Columns block selected, open the \"Styles\" panel within the Editor sidebar. Choose the \"Overlap\" block style to try it out.</p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:spacer -->\r\n<div class=\"wp-block-spacer\" style=\"height: 100px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:cover {\"overlayColor\":\"green\",\"contentPosition\":\"center center\",\"align\":\"wide\",\"className\":\"is-style-twentytwentyone-border\"} -->\r\n<div class=\"wp-block-cover alignwide has-green-background-color has-background-dim is-style-twentytwentyone-border\">\r\n<div class=\"wp-block-cover__inner-container\"><!-- wp:spacer {\"height\":20} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 20px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:paragraph {\"fontSize\":\"huge\"} -->\r\n<p class=\"has-huge-font-size\">Need help?</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:spacer {\"height\":75} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 75px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer -->\r\n\r\n<!-- wp:columns -->\r\n<div class=\"wp-block-columns\"><!-- wp:column -->\r\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\r\n<p><a href=\"https://wordpress.org/support/article/twenty-twenty-one/\">Read the Theme Documentation</a></p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column -->\r\n\r\n<!-- wp:column -->\r\n<div class=\"wp-block-column\"><!-- wp:paragraph -->\r\n<p><a href=\"https://wordpress.org/support/theme/twentytwentyone/\">Check out the Support Forums</a></p>\r\n<!-- /wp:paragraph --></div>\r\n<!-- /wp:column --></div>\r\n<!-- /wp:columns -->\r\n\r\n<!-- wp:spacer {\"height\":20} -->\r\n<div class=\"wp-block-spacer\" style=\"height: 20px;\" aria-hidden=\"true\"> </div>\r\n<!-- /wp:spacer --></div>\r\n</div>\r\n<!-- /wp:cover -->','Blocks','','inherit','closed','closed','','5-revision-v1','','','2021-05-06 20:23:07','2021-05-06 20:23:07','',5,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=679',0,'revision','',0),(680,1,'2021-05-06 20:23:38','2021-05-06 20:23:38','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 20:23:38','2021-05-06 20:23:38','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=680',0,'revision','',0),(681,1,'2021-05-06 20:23:52','2021-05-06 20:23:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 20:23:52','2021-05-06 20:23:52','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=681',0,'revision','',0),(682,1,'2021-05-06 20:24:18','2021-05-06 20:24:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,329,318,322,324,323,332,326,328,317\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-06 20:24:18','2021-05-06 20:24:18','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=682',0,'revision','',0),(683,1,'2021-05-06 20:25:28','2021-05-06 20:25:28','[vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','','','inherit','closed','closed','','431-autosave-v1','','','2021-05-06 20:25:28','2021-05-06 20:25:28','',431,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=683',0,'revision','',0),(684,1,'2021-05-06 20:25:40','2021-05-06 20:25:40','[vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','parralax','','inherit','closed','closed','','431-revision-v1','','','2021-05-06 20:25:40','2021-05-06 20:25:40','',431,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=684',0,'revision','',0),(685,1,'2021-05-06 20:26:26','2021-05-06 20:26:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:26:26','2021-05-06 20:26:26','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=685',0,'revision','',0),(687,1,'2021-05-06 20:28:19','2021-05-06 20:28:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-06 20:28:19','2021-05-06 20:28:19','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=687',0,'revision','',0),(688,1,'2021-05-06 20:29:54','2021-05-06 20:29:54','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"10% 22% 23.2% 10%\" item_padding_480_600=\"10% 22% 23.2% 10%\" item_padding_480=\"10% 22% 23.2% 10%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"576,578,615,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 20:29:54','2021-05-06 20:29:54','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=688',0,'revision','',0),(690,1,'2021-05-06 20:30:51','2021-05-06 20:30:51','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"10% 22% 23.2% 10%\" item_padding_480_600=\"10% 10% 10% 10%\" item_padding_480=\"10% 10% 10% 10%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"576,578,615,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 20:30:51','2021-05-06 20:30:51','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=690',0,'revision','',0),(692,1,'2021-05-06 20:32:04','2021-05-06 20:32:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"525\" img_size=\"600 x 800\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 22% 23.2% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"10% 22% 23.2% 10%\" item_padding_480_600=\"10% 10% 10% 10%\" item_padding_480=\"10% 10% 10% 10%\"][vc_column_text]\r\n<h2>A Stunning unique venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Our unique venue is the perfect romantic location for your wedding. The multiple spaces allow your guests to enjoy various settings throughout your day on one multipurpose site. When you hire Thirsk Lodge Barns for your wedding you get exclusive use of the entire venue. This includes the Main Barn (for ceremonies and dancing), the Wheelhouse (the ‘snug’), the Bar, a Courtyard, and the Dining Room. We can accommodate up to 140 guests for ceremonies and/or dining, and further guests are welcome to join for dancing in the evening.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"CHECK AVAILABILITY\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"576,578,615,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-06 20:32:04','2021-05-06 20:32:04','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=692',0,'revision','',0),(693,1,'2021-05-06 20:33:56','2021-05-06 20:33:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"579\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-06 20:33:56','2021-05-06 20:33:56','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=693',0,'revision','',0),(694,1,'2021-05-06 20:45:03','2021-05-06 20:45:03','','Letty+Will-VIP-Room_Thirsk-Lodge-barns','','inherit','open','closed','','lettywill-vip-room_thirsk-lodge-barns','','','2021-05-06 20:45:03','2021-05-06 20:45:03','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/LettyWill-VIP-Room_Thirsk-Lodge-barns.jpg',0,'attachment','image/jpeg',0),(695,1,'2021-05-06 20:45:16','2021-05-06 20:45:16','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception. It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening. A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos!\r\n\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"694\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-06 20:45:16','2021-05-06 20:45:16','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=695',0,'revision','',0),(696,1,'2021-05-06 20:46:25','2021-05-06 20:46:25','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-06 20:46:25','2021-05-06 20:46:25','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=696',0,'revision','',0),(697,1,'2021-05-06 20:47:09','2021-05-06 20:47:09','','BLOG','','inherit','closed','closed','','8-revision-v1','','','2021-05-06 20:47:09','2021-05-06 20:47:09','',8,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=697',0,'revision','',0),(698,1,'2021-05-06 20:48:00','2021-05-06 20:48:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\nletty@thirsklodgebarns.com[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-06 20:48:00','2021-05-06 20:48:00','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=698',0,'revision','',0),(700,1,'2021-05-06 20:48:41','2021-05-06 20:48:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 20:48:41','2021-05-06 20:48:41','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=700',0,'revision','',0),(701,1,'2021-05-06 20:50:16','2021-05-06 20:50:16','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"full\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:50:16','2021-05-06 20:50:16','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=701',0,'revision','',0),(702,1,'2021-05-06 20:50:32','2021-05-06 20:50:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning. We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.  With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:50:32','2021-05-06 20:50:32','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=702',0,'revision','',0),(703,1,'2021-05-06 20:52:50','2021-05-06 20:52:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:52:50','2021-05-06 20:52:50','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=703',0,'revision','',0),(704,1,'2021-05-06 20:53:23','2021-05-06 20:53:23','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:53:23','2021-05-06 20:53:23','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=704',0,'revision','',0),(705,1,'2021-05-06 20:54:23','2021-05-06 20:54:23','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the Bride or Groom!)\r\n\r\n[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:54:23','2021-05-06 20:54:23','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=705',0,'revision','',0),(706,1,'2021-05-06 20:55:20','2021-05-06 20:55:20','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620305035943{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 20:55:20','2021-05-06 20:55:20','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=706',0,'revision','',0),(707,1,'2021-05-06 21:00:28','2021-05-06 21:00:28','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 21:00:28','2021-05-06 21:00:28','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=707',0,'revision','',0),(708,1,'2021-05-06 21:01:08','2021-05-06 21:01:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]Our bar includes a selection of wine, beer, spirits and mixers, soft drinks and a few cocktail options. Please find a copy of our wine list<a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"> <b>here</b></a>.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"DRINKS MENU\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 21:01:08','2021-05-06 21:01:08','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=708',0,'revision','',0),(709,1,'2021-05-06 21:01:42','2021-05-06 21:01:42','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-06 21:01:42','2021-05-06 21:01:42','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=709',0,'revision','',0),(710,1,'2021-05-06 21:03:33','2021-05-06 21:03:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row]','Advert boxes','','draft','closed','closed','','advert-boxes','','','2021-05-13 10:20:47','2021-05-13 10:20:47','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=710',0,'page','',0),(711,1,'2021-05-06 21:03:33','2021-05-06 21:03:33','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<p>THE BARNS</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]</p>\r\n<p>WHATS INCLUDED</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]</p>\r\n<p>ACCOMMODATION</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<p>GALLERY</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<p>AVAILABILITY</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]</p>\r\n<p>WHATS ON</p>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row]\r\n','Advert boxes','','inherit','closed','closed','','710-revision-v1','','','2021-05-06 21:03:33','2021-05-06 21:03:33','',710,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=711',0,'revision','',0),(712,1,'2021-05-06 21:04:43','2021-05-06 21:04:43','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n<p>[/vc_column_text][vc_empty_space][vc_column_text]</p>\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n<p>[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<p>THE BARNS</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]</p>\r\n<p>WHATS INCLUDED</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]</p>\r\n<p>ACCOMMODATION</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<p>GALLERY</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<p>AVAILABILITY</p>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]</p>\r\n<p>WHATS ON</p>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620305354881{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"615\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\"][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 21:04:43','2021-05-06 21:04:43','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=712',0,'revision','',0),(713,1,'2021-05-06 21:07:09','2021-05-06 21:07:09','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">We have on-site accommodation to sleep 12 guests in 6 double bedrooms in our  Farmhouse.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 21:07:09','2021-05-06 21:07:09','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=713',0,'revision','',0),(714,1,'2021-05-06 21:08:36','2021-05-06 21:08:36','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row]','Advert boxes','','inherit','closed','closed','','710-revision-v1','','','2021-05-06 21:08:36','2021-05-06 21:08:36','',710,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=714',0,'revision','',0),(715,1,'2021-05-06 21:09:03','2021-05-06 21:09:03','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]\r\n[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:09:03','2021-05-06 21:09:03','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=715',0,'revision','',0),(716,1,'2021-05-06 21:11:44','2021-05-06 21:11:44','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-06 21:11:44','2021-05-06 21:11:44','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=716',0,'revision','',0),(717,1,'2021-05-06 21:13:40','2021-05-06 21:13:40','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"86\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-06 21:13:40','2021-05-06 21:13:40','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=717',0,'revision','',0),(718,1,'2021-05-06 21:16:24','2021-05-06 21:16:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-06 21:16:24','2021-05-06 21:16:24','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=718',0,'revision','',0),(719,1,'2021-05-06 21:32:13','2021-05-06 21:32:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</h3>\r\n[/vc_column_text][vc_empty_space][vc_single_image image=\"359\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.\r\n\r\nDownstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.\r\n\r\nThe Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.\r\n\r\nThe Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 21:32:13','2021-05-06 21:32:13','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=719',0,'revision','',0),(720,1,'2021-05-06 21:33:02','2021-05-06 21:33:02','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<h3 style=\"text-align: center;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</h3>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.\r\n\r\nDownstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.\r\n\r\nThe Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.\r\n\r\nThe Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-06 21:33:02','2021-05-06 21:33:02','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=720',0,'revision','',0),(722,1,'2021-05-06 21:37:45','2021-05-06 21:37:45','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-06 21:37:45','2021-05-06 21:37:45','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=722',0,'revision','',0),(723,1,'2021-05-06 21:38:51','2021-05-06 21:38:51','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.</p>\r\n<p>Subject to availability, you can hire the venue by the hour, or for a full day/evening.</p>\r\n<p>If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]</p>\r\n','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-06 21:38:51','2021-05-06 21:38:51','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=723',0,'revision','',0),(724,1,'2021-05-06 21:39:12','2021-05-06 21:39:12','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.</p>\r\n<p>Subject to availability, you can hire the venue by the hour, or for a full day/evening.</p>\r\n<p>If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]</p>\r\n','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-06 21:39:12','2021-05-06 21:39:12','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=724',0,'revision','',0),(725,1,'2021-05-06 21:41:33','2021-05-06 21:41:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:41:33','2021-05-06 21:41:33','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=725',0,'revision','',0),(728,1,'2021-05-06 21:43:04','2021-05-06 21:43:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:43:04','2021-05-06 21:43:04','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=728',0,'revision','',0),(729,1,'2021-05-06 21:44:31','2021-05-06 21:44:31','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.\r\n\r\nWith the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.\r\n\r\nWe can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:44:31','2021-05-06 21:44:31','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=729',0,'revision','',0),(730,1,'2021-05-06 21:45:44','2021-05-06 21:45:44','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:45:44','2021-05-06 21:45:44','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=730',0,'revision','',0),(731,1,'2021-05-06 21:47:00','2021-05-06 21:47:00','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337597561{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620337617103{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:47:00','2021-05-06 21:47:00','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=731',0,'revision','',0),(732,1,'2021-05-06 21:47:46','2021-05-06 21:47:46','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337597561{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:47:46','2021-05-06 21:47:46','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=732',0,'revision','',0),(733,1,'2021-05-06 21:48:32','2021-05-06 21:48:32','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"312\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 21:48:32','2021-05-06 21:48:32','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=733',0,'revision','',0),(734,1,'2021-05-06 21:53:01','2021-05-06 21:53:01','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: center;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: center;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-06 21:53:01','2021-05-06 21:53:01','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=734',0,'revision','',0),(735,1,'2021-05-06 21:55:58','2021-05-06 21:55:58','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n<p>[/vc_column_text][vc_empty_space][vc_column_text]</p>\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: center;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: center;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div>\r\n</blockquote>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>...Father Christmas</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Wreath Making</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Christmas Market</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.<br />\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-06 21:55:58','2021-05-06 21:55:58','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=735',0,'revision','',0),(736,1,'2021-05-06 21:56:27','2021-05-06 21:56:27','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n<p>[/vc_column_text][vc_empty_space][vc_column_text]</p>\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: center;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: center;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>...Father Christmas</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Wreath Making</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Christmas Market</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.<br />\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-06 21:56:27','2021-05-06 21:56:27','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=736',0,'revision','',0),(737,1,'2021-05-06 22:07:50','2021-05-06 22:07:50','','Wreath-Making-Workshop_Thirsk-Lodge-Barn','','inherit','open','closed','','wreath-making-workshop_thirsk-lodge-barn','','','2021-05-06 22:07:50','2021-05-06 22:07:50','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wreath-Making-Workshop_Thirsk-Lodge-Barn.jpg',0,'attachment','image/jpeg',0),(738,1,'2021-05-06 22:21:45','2021-05-06 22:21:45','','Santa\'s-Grotto_Thirsk-Lodge-Barns','','inherit','open','closed','','santas-grotto_thirsk-lodge-barns','','','2021-05-06 22:21:45','2021-05-06 22:21:45','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Santas-Grotto_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(739,1,'2021-05-06 22:22:57','2021-05-06 22:22:57','','Christmas-Market_Thirsk-Lodge-Barns','','inherit','open','closed','','christmas-market_thirsk-lodge-barns','','','2021-05-06 22:22:57','2021-05-06 22:22:57','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Christmas-Market_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(740,1,'2021-05-06 22:23:04','2021-05-06 22:23:04','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n<p>[/vc_column_text][vc_empty_space][vc_column_text]</p>\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: center;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: center;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div>\r\n</blockquote>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>...Father Christmas</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Wreath Making</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"739\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>Christmas Market</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.<br />\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-06 22:23:04','2021-05-06 22:23:04','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=740',0,'revision','',0),(741,1,'2021-05-06 22:29:36','2021-05-06 22:29:36','','stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313','','inherit','open','closed','','stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313','','','2021-05-06 22:29:36','2021-05-06 22:29:36','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/stock-photo-pretty-young-business-woman-giving-a-presentation-in-a-conference-meeting-setting-shallow-dof-243396313.jpg',0,'attachment','image/jpeg',0),(742,1,'2021-05-08 12:23:35','2021-05-08 12:23:35',' ','BUSINESS','','inherit','closed','closed','','440-autosave-v1','','','2021-05-08 12:23:35','2021-05-08 12:23:35','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=742',0,'revision','',0),(743,1,'2021-05-06 22:31:39','2021-05-06 22:31:39','','Business-Events_Thirsk-Lodge-Barns','','inherit','open','closed','','business-events_thirsk-lodge-barns','','','2021-05-06 22:31:39','2021-05-06 22:31:39','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Business-Events_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(744,1,'2021-05-06 22:31:45','2021-05-06 22:31:45','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"741\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 22:31:45','2021-05-06 22:31:45','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=744',0,'revision','',0),(745,1,'2021-05-06 22:32:49','2021-05-06 22:32:49','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"741\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 0 5% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 22:32:49','2021-05-06 22:32:49','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=745',0,'revision','',0),(746,1,'2021-05-06 22:33:47','2021-05-06 22:33:47','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n<p>[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"741\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.</p>\r\n<p>With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.</p>\r\n<p>We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-06 22:33:47','2021-05-06 22:33:47','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=746',0,'revision','',0),(747,1,'2021-05-06 22:38:34','2021-05-06 22:38:34','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]</p>\r\n<h2>A Stunning Wedding, Conference and Events Venue</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.</p>\r\n<p>[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021 it is now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]</p>\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]</p>\r\n<h2>Happy Customers</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-06 22:38:34','2021-05-06 22:38:34','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=747',0,'revision','',0),(748,1,'2021-05-06 22:39:40','2021-05-06 22:39:40','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\"]</p>\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-06 22:39:40','2021-05-06 22:39:40','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=748',0,'revision','',0),(750,1,'2021-05-06 23:00:10','2021-05-06 23:00:10','','Private-Event_Thirslk-Lodge-Barns','','inherit','open','closed','','private-event_thirslk-lodge-barns','','','2021-05-06 23:00:10','2021-05-06 23:00:10','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(751,1,'2021-05-06 23:00:11','2021-05-06 23:00:11','','Public-Event_Thirsk-Lodge-Barns','','inherit','open','closed','','public-event_thirsk-lodge-barns','','','2021-05-11 15:34:40','2021-05-11 15:34:40','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(752,1,'2021-05-06 23:01:07','2021-05-06 23:01:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\"><img class=\"size-full wp-image-751 alignnone\" src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg\" alt=\"\" width=\"32\" height=\"31\" />     Public Event</h4>\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-750 size-full\" src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg\" alt=\"\" width=\"32\" height=\"31\" />     Private Event</h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 23:01:07','2021-05-06 23:01:07','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=752',0,'revision','',0),(753,1,'2021-05-06 23:02:49','2021-05-06 23:02:49','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\"><img class=\"size-full wp-image-751 alignnone\" src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg\" alt=\"\" width=\"32\" height=\"31\" />     Public Event</h4>\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-750 size-full\" src=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg\" alt=\"\" width=\"32\" height=\"31\" />     Private Event</h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 23:02:49','2021-05-06 23:02:49','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=753',0,'revision','',0),(754,1,'2021-05-06 23:05:18','2021-05-06 23:05:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n<blockquote>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"><b><u>click here</u></b></a> to see our Events</h4>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 23:05:18','2021-05-06 23:05:18','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=754',0,'revision','',0),(755,1,'2021-05-06 23:06:08','2021-05-06 23:06:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"><b><u>click here</u></b></a> to see our Events</h4>\r\n</div></blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-06 23:06:08','2021-05-06 23:06:08','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=755',0,'revision','',0),(756,1,'2021-05-07 08:59:57','2021-05-07 08:59:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-07 08:59:57','2021-05-07 08:59:57','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=756',0,'revision','',0),(757,1,'2021-05-11 20:49:57','2021-05-11 20:49:57','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\n<h3 style=\"text-align: center;\">THE BARNS</h3>\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]</p>\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]</p>\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]</p>\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]</p>\n<h3 style=\"text-align: center;\">CONTACT US</h3>\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\n</span></h3>\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','WEDDINGS','','inherit','closed','closed','','403-autosave-v1','','','2021-05-11 20:49:57','2021-05-11 20:49:57','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=757',0,'revision','',0),(758,1,'2021-05-07 09:01:46','2021-05-07 09:01:46','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact\"]\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512644404944{padding-top: 53px !important;}\" z_index=\"\"][vc_column][qode_cards_slider][qode_cards_slider_item active_middle_slide=\"true\" center_slider=\"no\" border_radius=\"no\" hover_animation=\"no\" show_bullets=\"no\" images=\"576,578,615,580,575\"][/qode_cards_slider][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-07 09:01:46','2021-05-07 09:01:46','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=758',0,'revision','',0),(759,1,'2021-05-07 09:03:13','2021-05-07 09:03:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-07 09:03:13','2021-05-07 09:03:13','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=759',0,'revision','',0),(760,1,'2021-05-07 09:15:50','2021-05-07 09:15:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-07 09:15:50','2021-05-07 09:15:50','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=760',0,'revision','',0),(761,1,'2021-05-07 10:09:42','2021-05-07 10:09:42','{\n    \"sidebars_widgets[header_fixed_right]\": {\n        \"value\": [\n            \"text-12\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:09:42\"\n    },\n    \"widget_text[12]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjEzMDU6Ilt2Y19zZXBhcmF0b3IgdHlwZT0idHJhbnNwYXJlbnQiIHVwPSIyNiJdDQoNCltzb2NpYWxfaWNvbnMgdHlwZT0iY2lyY2xlX3NvY2lhbCIgaWNvbj0iZmEtaW5zdGFncmFtIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjE2IiBjdXN0b21fc2hhcGVfc2l6ZT0iMTgiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLWZhY2Vib29rIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjE2IiBjdXN0b21fc2hhcGVfc2l6ZT0iMTgiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiNmZmZmZmYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLXR3aXR0ZXIiIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTYiIGN1c3RvbV9zaGFwZV9zaXplPSIxOCIgbGluaz0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"dae34fe7347b360bc71217ee856dfd45\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:09:42\"\n    }\n}','','','trash','closed','closed','','d2e27c58-0445-4e6d-8ffa-5455d2ba418a','','','2021-05-07 10:09:42','2021-05-07 10:09:42','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/07/d2e27c58-0445-4e6d-8ffa-5455d2ba418a/',0,'customize_changeset','',0),(762,1,'2021-05-07 10:11:02','2021-05-07 10:11:02','{\n    \"sidebars_widgets[right_side_fixed]\": {\n        \"value\": [\n            \"text-13\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:02\"\n    },\n    \"widget_text[13]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjEzMDU6Ilt2Y19zZXBhcmF0b3IgdHlwZT0idHJhbnNwYXJlbnQiIHVwPSIyNiJdDQoNCltzb2NpYWxfaWNvbnMgdHlwZT0iY2lyY2xlX3NvY2lhbCIgaWNvbj0iZmEtaW5zdGFncmFtIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjE2IiBjdXN0b21fc2hhcGVfc2l6ZT0iMTgiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLWZhY2Vib29rIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjE2IiBjdXN0b21fc2hhcGVfc2l6ZT0iMTgiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiNmZmZmZmYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLXR3aXR0ZXIiIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTYiIGN1c3RvbV9zaGFwZV9zaXplPSIxOCIgbGluaz0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"dae34fe7347b360bc71217ee856dfd45\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:02\"\n    }\n}','','','trash','closed','closed','','993fb49e-1ee1-48a7-aba5-914cc11a08bf','','','2021-05-07 10:11:02','2021-05-07 10:11:02','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/07/993fb49e-1ee1-48a7-aba5-914cc11a08bf/',0,'customize_changeset','',0),(763,1,'2021-05-07 10:11:25','2021-05-07 10:11:25','{\n    \"sidebars_widgets[wp_inactive_widgets]\": {\n        \"value\": [\n            \"text-13\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:25\"\n    },\n    \"sidebars_widgets[right_side_fixed]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:25\"\n    },\n    \"widget_text[13]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjA6IiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"516e83e36bd9cddb5c800b9c42b5e982\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:25\"\n    }\n}','','','trash','closed','closed','','bfef4c4e-d34a-4486-b614-d93362a89766','','','2021-05-07 10:11:25','2021-05-07 10:11:25','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/07/bfef4c4e-d34a-4486-b614-d93362a89766/',0,'customize_changeset','',0),(764,1,'2021-05-07 10:11:49','2021-05-07 10:11:49','{\n    \"sidebars_widgets[header_bottom_right]\": {\n        \"value\": [\n            \"text-14\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:49\"\n    },\n    \"widget_text[14]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjEzMDU6Ilt2Y19zZXBhcmF0b3IgdHlwZT0idHJhbnNwYXJlbnQiIHVwPSIyNiJdDQoNCltzb2NpYWxfaWNvbnMgdHlwZT0iY2lyY2xlX3NvY2lhbCIgaWNvbj0iZmEtaW5zdGFncmFtIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjE2IiBjdXN0b21fc2hhcGVfc2l6ZT0iMTgiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLWZhY2Vib29rIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjE2IiBjdXN0b21fc2hhcGVfc2l6ZT0iMTgiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiNmZmZmZmYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLXR3aXR0ZXIiIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTYiIGN1c3RvbV9zaGFwZV9zaXplPSIxOCIgbGluaz0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"dae34fe7347b360bc71217ee856dfd45\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:11:49\"\n    }\n}','','','trash','closed','closed','','64a367c7-38a4-42e7-bab0-8ea1d49a94a6','','','2021-05-07 10:11:49','2021-05-07 10:11:49','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/07/64a367c7-38a4-42e7-bab0-8ea1d49a94a6/',0,'customize_changeset','',0),(765,1,'2021-05-07 10:12:40','2021-05-07 10:12:40','{\n    \"widget_text[14]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjEyNjA6Iltzb2NpYWxfaWNvbnMgdHlwZT0iY2lyY2xlX3NvY2lhbCIgaWNvbj0iZmEtaW5zdGFncmFtIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjEyIiBjdXN0b21fc2hhcGVfc2l6ZT0iMTQiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLWZhY2Vib29rIiB1c2VfY3VzdG9tX3NpemU9InllcyIgY3VzdG9tX3NpemU9IjEyIiBjdXN0b21fc2hhcGVfc2l6ZT0iMTQiIGxpbms9Imh0dHBzOi8vd3d3Lmluc3RhZ3JhbS5jb20vdGhpcnNrX2xvZGdlX2Jhcm5zLyIgdGFyZ2V0PSJfYmxhbmsiIGljb25fbWFyZ2luPSIwIDdweCAwIDAiIGljb25fY29sb3I9IiNmZmZmZmYiIGljb25faG92ZXJfY29sb3I9IiNmZmZmZmYiIGJhY2tncm91bmRfY29sb3I9IiM0MDRkNTYiIGJhY2tncm91bmRfaG92ZXJfY29sb3I9IiM2NjdiOGEiIGJhY2tncm91bmRfY29sb3JfdHJhbnNwYXJlbmN5PSIxIiBib3JkZXJfd2lkdGg9IjIiIGJvcmRlcl9jb2xvcj0iI2ZmZmZmZiIgYm9yZGVyX2hvdmVyX2NvbG9yPSIjZmZmZmZmIl1bc29jaWFsX2ljb25zIHR5cGU9ImNpcmNsZV9zb2NpYWwiIGljb249ImZhLXR3aXR0ZXIiIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTIiIGN1c3RvbV9zaGFwZV9zaXplPSIxNCIgbGluaz0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"7ff9fdde03a9a125e69fedf6651c7cde\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:12:40\"\n    }\n}','','','trash','closed','closed','','04307bfe-8d98-4be1-9654-1fdabdc48f91','','','2021-05-07 10:12:40','2021-05-07 10:12:40','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=765',0,'customize_changeset','',0),(766,1,'2021-05-07 10:24:17','2021-05-07 10:24:17','','TLB-logo','','inherit','open','closed','','tlb-logo','','','2021-05-07 10:24:17','2021-05-07 10:24:17','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo.png',0,'attachment','image/png',0),(767,1,'2021-05-07 10:28:44','2021-05-07 10:28:44','','TLB-logoweb','','inherit','open','closed','','tlb-logoweb','','','2021-05-07 10:28:44','2021-05-07 10:28:44','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logoweb.png',0,'attachment','image/png',0),(768,1,'2021-05-07 10:32:05','2021-05-07 10:32:05','','TLB-Bird-logo','','inherit','open','closed','','tlb-bird-logo','','','2021-05-07 10:32:05','2021-05-07 10:32:05','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-Bird-logo.png',0,'attachment','image/png',0),(769,1,'2021-05-07 10:32:33','2021-05-07 10:32:33','','Favicon-Thirsk-Lodge-Barns','','inherit','open','closed','','favicon-thirsk-lodge-barns','','','2021-05-07 10:32:33','2021-05-07 10:32:33','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Favicon-Thirsk-Lodge-Barns.png',0,'attachment','image/png',0),(771,1,'2021-05-07 10:43:53','0000-00-00 00:00:00','{\n    \"sidebars_widgets[header_fixed_right]\": {\n        \"value\": [],\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 10:43:53\"\n    }\n}','','','auto-draft','closed','closed','','1e6eb369-b9ad-48b7-9426-d85b53e676e0','','','2021-05-07 10:43:53','0000-00-00 00:00:00','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=771',0,'customize_changeset','',0),(772,1,'2021-05-07 10:51:04','2021-05-07 10:51:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-07 10:51:04','2021-05-07 10:51:04','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=772',0,'revision','',0),(773,1,'2021-05-07 16:32:04','2021-05-07 16:32:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and with years of wedding and event planning experience, we are here to help answer any of those \'not-so-sure\' questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"3\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-07 16:32:04','2021-05-07 16:32:04','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=773',0,'revision','',0);
INSERT INTO `wpgb_posts` VALUES (774,1,'2021-05-07 16:45:50','2021-05-07 16:45:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"588\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"482\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-07 16:45:50','2021-05-07 16:45:50','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=774',0,'revision','',0),(775,1,'2021-05-07 16:48:56','2021-05-07 16:48:56','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact\"]</p>\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.heathergillespie.co.uk/services/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-07 16:48:56','2021-05-07 16:48:56','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=775',0,'revision','',0),(776,1,'2021-05-07 16:51:33','2021-05-07 16:51:33','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 4% 168px 4%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]</p>\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]<br />\r\n[/vc_column_text][/vc_column][/vc_row]</p>\r\n','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-07 16:51:33','2021-05-07 16:51:33','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=776',0,'revision','',0),(777,1,'2021-05-07 16:56:32','2021-05-07 16:56:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 4% 168px 4%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-07 16:56:32','2021-05-07 16:56:32','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=777',0,'revision','',0),(778,1,'2021-05-07 16:57:33','2021-05-07 16:57:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHATS INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHATS ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-07 16:57:33','2021-05-07 16:57:33','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=778',0,'revision','',0),(779,1,'2021-05-07 16:59:59','2021-05-07 16:59:59','{\n    \"widget_text[14]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjg0MToiW3NvY2lhbF9pY29ucyB0eXBlPSJjaXJjbGVfc29jaWFsIiBpY29uPSJmYS1pbnN0YWdyYW0iIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTIiIGN1c3RvbV9zaGFwZV9zaXplPSIxNCIgbGluaz0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXVtzb2NpYWxfaWNvbnMgdHlwZT0iY2lyY2xlX3NvY2lhbCIgaWNvbj0iZmEtZmFjZWJvb2siIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTIiIGN1c3RvbV9zaGFwZV9zaXplPSIxNCIgbGluaz0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iI2ZmZmZmZiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXSI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"87c83505f976f30c3c27b9c9da04a5d7\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-07 16:59:59\"\n    }\n}','','','trash','closed','closed','','5fa8dad6-f16c-4e27-a1de-1a207e33150a','','','2021-05-07 16:59:59','2021-05-07 16:59:59','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/07/5fa8dad6-f16c-4e27-a1de-1a207e33150a/',0,'customize_changeset','',0),(780,1,'2021-05-07 17:01:20','2021-05-07 17:01:20','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-07 17:01:20','2021-05-07 17:01:20','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=780',0,'revision','',0),(781,1,'2021-05-07 17:01:58','2021-05-07 17:01:58','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-07 17:01:58','2021-05-07 17:01:58','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=781',0,'revision','',0),(782,1,'2021-05-07 17:03:00','2021-05-07 17:03:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS &amp; RESTAURANT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS & RESTAURANT','','inherit','closed','closed','','433-revision-v1','','','2021-05-07 17:03:00','2021-05-07 17:03:00','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=782',0,'revision','',0),(783,1,'2021-05-08 12:16:21','2021-05-08 12:16:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\" background_image=\"616\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"482\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:16:21','2021-05-08 12:16:21','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=783',0,'revision','',0),(784,1,'2021-05-08 12:17:39','2021-05-08 12:17:39','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" item_padding=\"109px 0 0 4%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\" background_image=\"616\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:17:39','2021-05-08 12:17:39','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=784',0,'revision','',0),(785,1,'2021-05-08 12:18:06','2021-05-08 12:18:06','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" item_padding=\"109px 0 0 4%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\" background_image=\"616\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 0 0 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:18:06','2021-05-08 12:18:06','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=785',0,'revision','',0),(786,1,'2021-05-08 12:20:33','2021-05-08 12:20:33','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"600 x 800\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.</p>\r\n<p>Subject to availability, you can hire the venue by the hour, or for a full day/evening.</p>\r\n<p>If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"584\"]</p>\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]</p>\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:20:33','2021-05-08 12:20:33','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=786',0,'revision','',0),(787,1,'2021-05-08 12:22:24','2021-05-08 12:22:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"600 x 800\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"286\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:22:24','2021-05-08 12:22:24','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=787',0,'revision','',0),(788,1,'2021-05-08 12:23:18','2021-05-08 12:23:18','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"600 x 800\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"286\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:23:18','2021-05-08 12:23:18','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=788',0,'revision','',0),(789,1,'2021-05-08 12:23:42','2021-05-08 12:23:42','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"600 x 800\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"286\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-08 12:23:42','2021-05-08 12:23:42','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=789',0,'revision','',0),(790,1,'2021-05-08 12:24:47','2021-05-08 12:24:47','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-08 12:24:47','2021-05-08 12:24:47','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=790',0,'revision','',0),(791,1,'2021-05-08 12:25:56','2021-05-08 12:25:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: center;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: center;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"739\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-08 12:25:56','2021-05-08 12:25:56','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=791',0,'revision','',0),(792,1,'2021-05-08 12:26:59','2021-05-08 12:26:59','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<blockquote>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"><b><u>click here</u></b></a> to see our Events</h4>\r\n</div></blockquote>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h4>\r\n</div>\r\n</div>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-08 12:26:59','2021-05-08 12:26:59','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=792',0,'revision','',0),(794,1,'2021-05-08 12:37:28','2021-05-08 12:37:28','','pin','','inherit','open','closed','','pin-2','','','2021-05-08 12:37:28','2021-05-08 12:37:28','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/pin.png',0,'attachment','image/png',0),(795,1,'2021-05-08 12:37:56','2021-05-08 12:37:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"794\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"6px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-08 12:37:56','2021-05-08 12:37:56','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=795',0,'revision','',0),(796,1,'2021-05-08 12:38:34','2021-05-08 12:38:34','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"794\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-08 12:38:34','2021-05-08 12:38:34','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=796',0,'revision','',0),(797,1,'2021-05-08 14:39:37','2021-05-08 14:39:37','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 4px 168px 4px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-08 14:39:37','2021-05-08 14:39:37','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=797',0,'revision','',0),(798,1,'2021-05-08 14:41:04','2021-05-08 14:41:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"647\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"648\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-08 14:41:04','2021-05-08 14:41:04','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=798',0,'revision','',0),(799,1,'2021-05-09 20:20:26','2021-05-09 20:20:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-09 20:20:26','2021-05-09 20:20:26','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=799',0,'revision','',0),(800,1,'2021-05-09 20:22:17','2021-05-09 20:22:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"741\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.\r\n\r\nWith the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.\r\n\r\nWe can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-09 20:22:17','2021-05-09 20:22:17','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=800',0,'revision','',0),(801,1,'2021-05-09 20:23:51','2021-05-09 20:23:51','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-09 20:23:51','2021-05-09 20:23:51','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=801',0,'revision','',0),(802,1,'2021-05-10 21:23:38','2021-05-10 21:23:38','','Thirsk-Lodge-Barns_Wedding-venue-207','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-207','','','2021-05-10 21:23:38','2021-05-10 21:23:38','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg',0,'attachment','image/jpeg',0),(804,1,'2021-05-10 21:24:39','2021-05-10 21:24:39','','Thirsk-Lodge-Barns_Wedding-venue-20','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-20','','','2021-05-10 21:24:39','2021-05-10 21:24:39','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg',0,'attachment','image/jpeg',0),(805,1,'2021-05-10 21:26:14','2021-05-10 21:26:14','','Thirsk-Lodge-Barns_Wedding-venue-72','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-72','','','2021-05-10 21:26:14','2021-05-10 21:26:14','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg',0,'attachment','image/jpeg',0),(806,1,'2021-05-10 21:26:20','2021-05-10 21:26:20','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"804\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 21:26:20','2021-05-10 21:26:20','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=806',0,'revision','',0),(807,1,'2021-05-10 21:32:04','2021-05-10 21:32:04','','Thirsk-Lodge-Barns_Wedding-venue-209','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-209','','','2021-05-10 21:32:04','2021-05-10 21:32:04','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209.jpg',0,'attachment','image/jpeg',0),(808,1,'2021-05-10 21:32:11','2021-05-10 21:32:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"804\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 21:32:11','2021-05-10 21:32:11','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=808',0,'revision','',0),(810,1,'2021-05-10 21:35:44','2021-05-10 21:35:44','','Thirsk-Lodge-Barns_Wedding-venue-21','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-21','','','2021-05-10 21:35:44','2021-05-10 21:35:44','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg',0,'attachment','image/jpeg',0),(811,1,'2021-05-10 21:35:52','2021-05-10 21:35:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512559501091{padding-top: 152px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620340711264{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 21:35:52','2021-05-10 21:35:52','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=811',0,'revision','',0),(812,1,'2021-05-10 21:36:31','2021-05-10 21:36:31','','Thirsk-Lodge-Barns_Wedding-venue-232','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-232','','','2021-05-10 21:36:31','2021-05-10 21:36:31','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-232.jpg',0,'attachment','image/jpeg',0),(813,1,'2021-05-10 21:37:07','2021-05-10 21:37:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-10 21:37:07','2021-05-10 21:37:07','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=813',0,'revision','',0),(814,1,'2021-05-10 21:43:59','2021-05-10 21:43:59','','Thirsk-Lodge-Barns_Wedding-venue-30','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-30','','','2021-05-10 21:43:59','2021-05-10 21:43:59','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg',0,'attachment','image/jpeg',0),(815,1,'2021-05-10 21:47:50','2021-05-10 21:47:50','','Thirsk-Lodge-Barns_Wedding-venue-28','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-28','','','2021-05-10 21:47:50','2021-05-10 21:47:50','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-28.jpg',0,'attachment','image/jpeg',0),(816,1,'2021-05-10 21:47:58','2021-05-10 21:47:58','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"815\" img_size=\"600x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-10 21:47:58','2021-05-10 21:47:58','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=816',0,'revision','',0),(817,1,'2021-05-10 21:48:43','2021-05-10 21:48:43','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"815\" img_size=\"600x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"324\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-10 21:48:43','2021-05-10 21:48:43','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=817',0,'revision','',0),(818,1,'2021-05-10 21:50:10','2021-05-10 21:50:10','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"815\" img_size=\"600x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-10 21:50:10','2021-05-10 21:50:10','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=818',0,'revision','',0),(819,1,'2021-05-10 21:52:52','2021-05-10 21:52:52','','Thirsk-Lodge-Barns_Wedding-venue-209-Gallery','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-209-gallery','','','2021-05-10 21:52:52','2021-05-10 21:52:52','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg',0,'attachment','image/jpeg',0),(820,1,'2021-05-10 21:53:00','2021-05-10 21:53:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"815\" img_size=\"600x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-10 21:53:00','2021-05-10 21:53:00','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=820',0,'revision','',0),(821,1,'2021-05-10 21:55:46','2021-05-10 21:55:46','','Thirsk-Lodge-Barns_Food-Events','','inherit','open','closed','','thirsk-lodge-barns_food-events','','','2021-05-10 21:55:46','2021-05-10 21:55:46','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Food-Events.jpg',0,'attachment','image/jpeg',0),(822,1,'2021-05-10 21:55:54','2021-05-10 21:55:54','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"630\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"591\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-10 21:55:54','2021-05-10 21:55:54','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=822',0,'revision','',0),(823,1,'2021-05-10 21:56:52','2021-05-10 21:56:52','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-10 21:56:52','2021-05-10 21:56:52','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=823',0,'revision','',0),(824,1,'2021-05-10 21:58:58','2021-05-10 21:58:58','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-10 21:58:58','2021-05-10 21:58:58','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=824',0,'revision','',0),(826,1,'2021-05-10 22:01:07','2021-05-10 22:01:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-10 22:01:07','2021-05-10 22:01:07','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=826',0,'revision','',0),(827,1,'2021-05-10 22:03:48','2021-05-10 22:03:48','','Thirsk-Lodge-Barns_Accommodation','','inherit','open','closed','','thirsk-lodge-barns_accommodation-2','','','2021-05-10 22:03:48','2021-05-10 22:03:48','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation-1.jpg',0,'attachment','image/jpeg',0),(828,1,'2021-05-10 22:04:00','2021-05-10 22:04:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_video_box video_image=\"143\" video_link=\"https://www.youtube.com/watch?v=D2qBIgTZodU\"][vc_single_image image=\"827\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-10 22:04:00','2021-05-10 22:04:00','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=828',0,'revision','',0),(829,1,'2021-05-10 22:04:17','2021-05-10 22:04:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"827\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-10 22:04:17','2021-05-10 22:04:17','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=829',0,'revision','',0),(830,1,'2021-05-10 22:09:14','2021-05-10 22:09:14','','Thirsk-Lodge-Barns_Private-Hire-71','','inherit','open','closed','','thirsk-lodge-barns_private-hire-71','','','2021-05-10 22:09:14','2021-05-10 22:09:14','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Private-Hire-71.jpg',0,'attachment','image/jpeg',0),(831,1,'2021-05-10 22:09:19','2021-05-10 22:09:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"600 x 800\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"830\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-10 22:09:19','2021-05-10 22:09:19','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=831',0,'revision','',0),(832,1,'2021-05-10 22:11:41','2021-05-10 22:11:41','','Thirsk-Lodge-Barns_Private-Hire-71','','inherit','open','closed','','thirsk-lodge-barns_private-hire-71-2','','','2021-05-10 22:11:41','2021-05-10 22:11:41','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Private-Hire-71-1.jpg',0,'attachment','image/jpeg',0),(833,1,'2021-05-10 22:11:49','2021-05-10 22:11:49','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"600 x 800\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"832\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-10 22:11:49','2021-05-10 22:11:49','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=833',0,'revision','',0),(835,1,'2021-05-11 11:50:54','2021-05-11 11:50:54','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,814,841,582,580,804,827,815,576\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-autosave-v1','','','2021-05-11 11:50:54','2021-05-11 11:50:54','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=835',0,'revision','',0),(836,1,'2021-05-10 22:16:07','2021-05-10 22:16:07','','Thirsk-Lodge-Barns_Courtyard','','inherit','open','closed','','thirsk-lodge-barns_courtyard-2','','','2021-05-10 22:16:07','2021-05-10 22:16:07','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Courtyard-1.jpg',0,'attachment','image/jpeg',0),(837,1,'2021-05-10 22:16:30','2021-05-10 22:16:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"335,814,810,815,836,827,804\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-10 22:16:30','2021-05-10 22:16:30','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=837',0,'revision','',0),(838,1,'2021-05-10 22:17:01','2021-05-10 22:17:01','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"814,810,815,836,827,804\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-10 22:17:01','2021-05-10 22:17:01','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=838',0,'revision','',0),(839,1,'2021-05-10 22:26:59','2021-05-10 22:26:59','','Thirsk-Lodge-Barns_Wedding-Venue_127','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue_127','','','2021-05-10 22:26:59','2021-05-10 22:26:59','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-Venue_127.jpg',0,'attachment','image/jpeg',0),(840,1,'2021-05-10 22:27:03','2021-05-10 22:27:03','','Thirsk-Lodge-Barns_Wedding-Venue_199','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue_199','','','2021-05-10 22:27:03','2021-05-10 22:27:03','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-Venue_199.jpg',0,'attachment','image/jpeg',0),(841,1,'2021-05-10 22:27:14','2021-05-10 22:27:14','','Thirsk-Lodge-Barns_Wedding-venue-3','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-3','','','2021-05-10 22:27:14','2021-05-10 22:27:14','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-3.jpg',0,'attachment','image/jpeg',0),(842,1,'2021-05-10 22:27:21','2021-05-10 22:27:21','','Thirsk-Lodge-Barns_Wedding-venue-7','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-7','','','2021-05-10 22:27:21','2021-05-10 22:27:21','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-7.jpg',0,'attachment','image/jpeg',0),(843,1,'2021-05-10 22:27:26','2021-05-10 22:27:26','','Thirsk-Lodge-Barns_Wedding-venue-72','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-72-2','','','2021-05-10 22:27:26','2021-05-10 22:27:26','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg',0,'attachment','image/jpeg',0),(844,1,'2021-05-10 22:28:22','2021-05-10 22:28:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"814,843,836,840,842,841,827,804,815,839,810\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-10 22:28:22','2021-05-10 22:28:22','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=844',0,'revision','',0),(845,1,'2021-05-10 22:29:14','2021-05-10 22:29:14','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"814,843,836,842,841,840,804,827,815\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-10 22:29:14','2021-05-10 22:29:14','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=845',0,'revision','',0),(846,1,'2021-05-10 22:29:50','2021-05-10 22:29:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,843,836,842,841,814,804,827,815\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-10 22:29:50','2021-05-10 22:29:50','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=846',0,'revision','',0),(847,1,'2021-05-10 22:31:44','2021-05-10 22:31:44','{\n    \"widget_text[12]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjk5MDoiW3ZjX3NlcGFyYXRvciB0eXBlPSJ0cmFuc3BhcmVudCIgdXA9IjI2Il0NCg0KW3NvY2lhbF9pY29ucyB0eXBlPSJjaXJjbGVfc29jaWFsIiBpY29uPSJmYS1pbnN0YWdyYW0iIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTYiIGN1c3RvbV9zaGFwZV9zaXplPSIxOCIgbGluaz0iPGEgaHJlZj0iaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS90aGlyc2tfbG9kZ2VfYmFybnMvIj5odHRwczovL3d3dy5pbnN0YWdyYW0uY29tL3RoaXJza19sb2RnZV9iYXJucy88L2E+IiB0YXJnZXQ9Il9ibGFuayIgaWNvbl9tYXJnaW49IjAgN3B4IDAgMCIgaWNvbl9jb2xvcj0iI2ZmZmZmZiIgaWNvbl9ob3Zlcl9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9jb2xvcj0iIzQwNGQ1NiIgYmFja2dyb3VuZF9ob3Zlcl9jb2xvcj0iIzY2N2I4YSIgYmFja2dyb3VuZF9jb2xvcl90cmFuc3BhcmVuY3k9IjEiIGJvcmRlcl93aWR0aD0iMiIgYm9yZGVyX2NvbG9yPSIjZmZmZmZmIiBib3JkZXJfaG92ZXJfY29sb3I9IiNmZmZmZmYiXVtzb2NpYWxfaWNvbnMgdHlwZT0iY2lyY2xlX3NvY2lhbCIgaWNvbj0iZmEtZmFjZWJvb2siIHVzZV9jdXN0b21fc2l6ZT0ieWVzIiBjdXN0b21fc2l6ZT0iMTYiIGN1c3RvbV9zaGFwZV9zaXplPSIxOCIgbGluaz0iPGEgaHJlZj0iaHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL3RoaXJza2xvZGdlLyI+aHR0cHM6Ly93d3cuZmFjZWJvb2suY29tL3RoaXJza2xvZGdlLzwvYT4iIHRhcmdldD0iX2JsYW5rIiBpY29uX21hcmdpbj0iMCA3cHggMCAwIiBpY29uX2NvbG9yPSIjZmZmZmZmIiBpY29uX2hvdmVyX2NvbG9yPSIjZmZmZmZmIiBiYWNrZ3JvdW5kX2NvbG9yPSIjNDA0ZDU2IiBiYWNrZ3JvdW5kX2hvdmVyX2NvbG9yPSIjNjY3YjhhIiBiYWNrZ3JvdW5kX2NvbG9yX3RyYW5zcGFyZW5jeT0iMSIgYm9yZGVyX3dpZHRoPSIyIiBib3JkZXJfY29sb3I9IiNmZmZmZmYiIGJvcmRlcl9ob3Zlcl9jb2xvcj0iI2ZmZmZmZiJdIjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"60f0d70087e7eea7d9b1429a55c5555a\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-10 22:31:44\"\n    }\n}','','','trash','closed','closed','','df57fe5c-8821-4803-a6eb-033cedad7857','','','2021-05-10 22:31:44','2021-05-10 22:31:44','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/10/df57fe5c-8821-4803-a6eb-033cedad7857/',0,'customize_changeset','',0),(848,1,'2021-05-10 22:44:07','2021-05-10 22:44:07','','THIRKS LODGE BARNS','','publish','closed','closed','','thirks-lodge-barns','','','2021-05-10 22:55:58','2021-05-10 22:55:58','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=slides&#038;p=848',1,'slides','',0),(849,1,'2021-05-10 22:43:41','2021-05-10 22:43:41','','Thirsk Lodge Barns','','inherit','open','closed','','thirsk-lodge-barns','','','2021-05-10 22:43:41','2021-05-10 22:43:41','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-232.jpg',0,'attachment','image/jpeg',0),(850,1,'2021-05-10 22:45:18','2021-05-10 22:45:18','','THIRSK LODGE BARNS','','inherit','closed','closed','','289-autosave-v1','','','2021-05-10 22:45:18','2021-05-10 22:45:18','',289,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=850',0,'revision','',0),(851,1,'2021-05-10 22:47:27','2021-05-10 22:47:27','','Thirsk Lodge Barns','','inherit','open','closed','','thirsk-lodge-barns-2','','','2021-05-10 22:47:27','2021-05-10 22:47:27','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-209.jpg',0,'attachment','image/jpeg',0),(852,1,'2021-05-10 22:49:47','2021-05-10 22:49:47','','THIRKS LODGE BARNS','','publish','closed','closed','','thirks-lodge-barns-2','','','2021-05-11 20:47:00','2021-05-11 20:47:00','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?post_type=slides&#038;p=852',2,'slides','',0),(853,1,'2021-05-10 22:48:17','2021-05-10 22:48:17','','Thirsk Lodge Barns','','inherit','open','closed','','thirsk-lodge-barns-3','','','2021-05-10 22:48:17','2021-05-10 22:48:17','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-225.jpg',0,'attachment','image/jpeg',0),(854,1,'2021-05-10 22:48:39','2021-05-10 22:48:39','','Thirsk Lodge Barns','','inherit','open','closed','','thirsk-lodge-barns-4','','','2021-05-10 22:48:39','2021-05-10 22:48:39','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-72.jpg',0,'attachment','image/jpeg',0),(855,1,'2021-05-10 22:50:57','2021-05-10 22:50:57','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687043971{padding-top: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 22:50:57','2021-05-10 22:50:57','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=855',0,'revision','',0),(857,1,'2021-05-10 22:53:17','2021-05-10 22:53:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687043971{padding-top: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"12px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 22:53:17','2021-05-10 22:53:17','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=857',0,'revision','',0),(858,1,'2021-05-10 22:54:53','2021-05-10 22:54:53','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687043971{padding-top: 4% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"25px\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 22:54:53','2021-05-10 22:54:53','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=858',0,'revision','',0),(859,1,'2021-05-10 22:57:33','2021-05-10 22:57:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-10 22:57:33','2021-05-10 22:57:33','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=859',0,'revision','',0),(860,1,'2021-05-10 22:59:47','2021-05-10 22:59:47','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-10 22:59:47','2021-05-10 22:59:47','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=860',0,'revision','',0),(861,1,'2021-05-11 09:34:25','2021-05-11 09:34:25','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS & RESTAURANT','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:34:25','2021-05-11 09:34:25','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=861',0,'revision','',0),(862,1,'2021-05-11 09:35:01','2021-05-11 09:35:01','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:35:01','2021-05-11 09:35:01','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=862',0,'revision','',0),(863,1,'2021-05-11 09:35:34','2021-05-11 09:35:34','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-revision-v1','','','2021-05-11 09:35:34','2021-05-11 09:35:34','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=863',0,'revision','',0),(864,1,'2021-05-11 09:43:05','2021-05-11 09:43:05','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h2><strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong></h2>\r\n<h3>We Are Open!</h3>\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n<h4>Open from 11am – 3pm.</h4>\r\nBOOKING ESSENTIAL.[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h2><strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong></h2>\r\n<h3>We Are Open!</h3>\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n<h4>Open from 11am – 3pm.</h4>\r\nBOOKING ESSENTIAL.[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:43:05','2021-05-11 09:43:05','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=864',0,'revision','',0),(865,1,'2021-05-11 09:44:20','2021-05-11 09:44:20','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]<strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong>\r\n\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n<h4>Open from 11am – 3pm.</h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]<strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong>\r\n\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n<h4>Open from 11am – 3pm.</h4>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:44:20','2021-05-11 09:44:20','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=865',0,'revision','',0),(866,1,'2021-05-11 09:46:03','2021-05-11 09:46:03','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3><strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong></h3>\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3><strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong></h3>\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3><strong>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</strong></h3>\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:46:03','2021-05-11 09:46:03','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=866',0,'revision','',0),(867,1,'2021-05-11 09:48:13','2021-05-11 09:48:13','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</h3>\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>WEDDING<strong> FAIR – SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h3>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\nBOOKING ESSENTIAL.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUSHI<strong> NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</strong></h3>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\nBOOKING ESSENTIAL. £50PP (includes a glass of sake per person)\r\n\r\nLIMITED PLACES.[/vc_column_text][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:48:13','2021-05-11 09:48:13','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=867',0,'revision','',0),(868,1,'2021-05-11 09:53:02','2021-05-11 09:53:02','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</h3>\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>WEDDING<strong> FAIR – SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h3>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUSHI<strong> NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</strong></h3>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n£50PP (includes a glass of sake per person)\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUSHI<strong> NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</strong></h3>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n£60PP (includes half a bottle of wine per person)\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:53:02','2021-05-11 09:53:02','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=868',0,'revision','',0),(869,1,'2021-05-11 09:54:12','2021-05-11 09:54:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\n<strong>We Are Open!</strong>\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>WEDDING<strong> FAIR – SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h3>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUSHI<strong> NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</strong></h3>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n£50PP (includes a glass of sake per person)\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUSHI<strong> NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</strong></h3>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n£60PP (includes half a bottle of wine per person)\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:54:12','2021-05-11 09:54:12','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=869',0,'revision','',0),(870,1,'2021-05-11 09:57:23','2021-05-11 09:57:23','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>WEDDING FAIR – SUNDAY 8<sup>TH</sup> AUGUST 2021</h3>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h3>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h3>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (includes half a bottle of wine per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h3>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h3>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£60PP (includes half a bottle of wine per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 09:57:23','2021-05-11 09:57:23','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=870',0,'revision','',0),(871,1,'2021-05-11 10:00:22','2021-05-11 10:00:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR – SUNDAY 8<sup>TH</sup> AUGUST 2021</h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (includes half a bottle of wine per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£60PP (includes half a bottle of wine per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 10:00:22','2021-05-11 10:00:22','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=871',0,'revision','',0),(872,1,'2021-05-11 10:01:25','2021-05-11 10:01:25','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY – SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR – SUNDAY 8<sup>TH</sup> AUGUST 2021</h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 10:01:25','2021-05-11 10:01:25','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=872',0,'revision','',0),(873,1,'2021-05-11 10:04:29','2021-05-11 10:04:29','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 10:04:29','2021-05-11 10:04:29','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=873',0,'revision','',0),(874,1,'2021-05-11 10:08:26','2021-05-11 10:08:26','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 10:08:26','2021-05-11 10:08:26','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=874',0,'revision','',0),(875,1,'2021-05-11 10:09:01','2021-05-11 10:09:01','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 10:09:01','2021-05-11 10:09:01','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=875',0,'revision','',0),(876,1,'2021-05-11 10:10:12','2021-05-11 10:10:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727796468{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 10:10:12','2021-05-11 10:10:12','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=876',0,'revision','',0),(877,1,'2021-05-11 10:40:48','2021-05-11 10:40:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-11 10:40:48','2021-05-11 10:40:48','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=877',0,'revision','',0),(878,1,'2021-05-11 10:42:16','2021-05-11 10:42:16','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]For weddings, this majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception.\r\n\r\nIt overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening.\r\n\r\nA wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have. There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree (check it out on our <u>Instagram</u>!), this is the perfect place for photos, drinks or a breath of fresh air. We will offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room for kids to watch TV or for your guests to pop their feet up. Set just off the Main Barn, it’s a great escape for those guests that want a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"694\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-11 10:42:16','2021-05-11 10:42:16','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=878',0,'revision','',0),(879,1,'2021-05-11 15:43:57','2021-05-11 15:43:57','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]For weddings, this majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception.</p>\r\n<p>It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening.</p>\r\n<p>A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Dining Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have.</p>\r\n<p>There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree, our courtyard has a gorgeous Mediterranean feel to it. It is sheltered and gets the sun all day long, making it the perfect place for photos, drinks or a breath of fresh air.</p>\r\n<p>We offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"804\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room with soft furniture in which is a great escape for kids to watch TV or for your guests to pop their feet up.</p>\r\n<p>With stunning views of the meadow, the Wheelhouse is set just off the Main Barn and is a great escape for those guests wanting a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"694\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','inherit','closed','closed','','447-autosave-v1','','','2021-05-11 15:43:57','2021-05-11 15:43:57','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=879',0,'revision','',0),(880,1,'2021-05-11 10:43:46','2021-05-11 10:43:46','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Main Barn</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]For weddings, this majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception.\r\n\r\nIt overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening.\r\n\r\nA wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Bar</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Dining Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have.\r\n\r\nThere is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Courtyard</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree, our courtyard has a gorgeous Mediterranean feel to it. It is sheltered and gets the sun all day long, making it the perfect place for photos, drinks or a breath of fresh air.\r\n\r\nWe offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"578\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>The Wheelhouse</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room with soft furniture in which is a great escape for kids to watch TV or for your guests to pop their feet up.\r\n\r\nWith stunning views of the meadow, the Wheelhouse is set just off the Main Barn and is a great escape for those guests wanting a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>VIP Room</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"694\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-11 10:43:46','2021-05-11 10:43:46','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=880',0,'revision','',0),(881,1,'2021-05-11 10:44:10','2021-05-11 10:44:10','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"WHAT\'S ON\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 10:44:10','2021-05-11 10:44:10','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=881',0,'revision','',0),(882,1,'2021-05-11 10:45:12','2021-05-11 10:45:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"827\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 10:45:12','2021-05-11 10:45:12','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=882',0,'revision','',0),(883,1,'2021-05-11 11:39:17','2021-05-11 11:39:17','','UNVEILED-MemberBadge-Photo','','inherit','open','closed','','unveiled-memberbadge-photo','','','2021-05-11 11:39:17','2021-05-11 11:39:17','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo.png',0,'attachment','image/png',0),(884,1,'2021-05-11 11:39:43','2021-05-11 11:39:43','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][/vc_column][/vc_row]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-11 11:39:43','2021-05-11 11:39:43','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=884',0,'revision','',0),(885,1,'2021-05-11 11:45:16','2021-05-11 11:45:16','','coco-member-500','','inherit','open','closed','','coco-member-500','','','2021-05-11 11:45:16','2021-05-11 11:45:16','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500.png',0,'attachment','image/png',0),(886,1,'2021-05-11 11:45:21','2021-05-11 11:45:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-11 11:45:21','2021-05-11 11:45:21','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=886',0,'revision','',0),(887,1,'2021-05-11 11:47:58','2021-05-11 11:47:58','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,843,836,842,841,814,804,827,815\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620733676168{margin-right: 10% !important;}\" z_index=\"\"][vc_column][vc_column_text]\r\n<p style=\"text-align: right;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></p>\r\n[/vc_column_text][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-11 11:47:58','2021-05-11 11:47:58','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=887',0,'revision','',0),(888,1,'2021-05-11 11:48:49','2021-05-11 11:48:49','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,843,836,842,841,814,804,827,815\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-11 11:48:49','2021-05-11 11:48:49','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=888',0,'revision','',0),(889,1,'2021-05-11 11:50:04','2021-05-11 11:50:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,582,841,814,580,804,827,815,576\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-11 11:50:04','2021-05-11 11:50:04','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=889',0,'revision','',0),(890,1,'2021-05-11 11:50:42','2021-05-11 11:50:42','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,814,841,582,580,804,827,815,576\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-11 11:50:42','2021-05-11 11:50:42','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=890',0,'revision','',0),(891,1,'2021-05-11 11:51:22','2021-05-11 11:51:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,814,582,841,580,804,827,815,576\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-11 11:51:22','2021-05-11 11:51:22','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=891',0,'revision','',0),(892,1,'2021-05-11 11:53:08','2021-05-11 11:53:08','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"815\" img_size=\"600x 680\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-11 11:53:08','2021-05-11 11:53:08','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=892',0,'revision','',0),(893,1,'2021-05-11 11:55:38','2021-05-11 11:55:38','','Thirsk Lodge Barns','','inherit','open','closed','','thirsk-lodge-barns-5','','','2021-05-11 11:55:38','2021-05-11 11:55:38','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/©GeorginaHarrisonPhotography-TBL-232-1.jpg',0,'attachment','image/jpeg',0),(894,1,'2021-05-11 12:23:32','2021-05-11 12:23:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-11 12:23:32','2021-05-11 12:23:32','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=894',0,'revision','',0),(895,1,'2021-05-11 12:24:55','2021-05-11 12:24:55','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 12:24:55','2021-05-11 12:24:55','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=895',0,'revision','',0),(896,1,'2021-05-11 12:25:19','2021-05-11 12:25:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"109px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 12:25:19','2021-05-11 12:25:19','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=896',0,'revision','',0),(897,1,'2021-05-11 12:25:50','2021-05-11 12:25:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 12:25:50','2021-05-11 12:25:50','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=897',0,'revision','',0),(898,1,'2021-05-11 12:28:45','2021-05-11 12:28:45','','_BBQ-AT-THE-BARNS-WITH-BLUES-CATERING','','inherit','open','closed','','_bbq-at-the-barns-with-blues-catering','','','2021-05-11 12:28:45','2021-05-11 12:28:45','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg',0,'attachment','image/jpeg',0),(899,1,'2021-05-11 12:28:53','2021-05-11 12:28:53','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727796468{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"898\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:28:53','2021-05-11 12:28:53','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=899',0,'revision','',0),(900,1,'2021-05-11 12:44:41','2021-05-11 12:44:41','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]</p>\n<h2 style=\"text-align: center;\">EVENTS</h2>\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"910\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]</p>\n<h4>OPEN DAY<br />\nSUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\n<p>We Are Open!</p>\n<p>After 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.</p>\n<p>The Bar will be open throughout the event for tea, coffee and drinks.</p>\n<p>Due to COVID, please book your place in through our booking system. There is no charge for this event.</p>\n<p><strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]</p>\n<h4>WEDDING FAIR<br />\n<strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\n<p>Come along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.</p>\n<p>Open from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.</p>\n<p>Due to COVID, please book your place in through our booking system. There is no charge for this event.</p>\n<p><strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"906\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]</p>\n<h4>SUSHI NIGHT<br />\nWEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\n<p>Yorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.</p>\n<p>You will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.</p>\n<p>This is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.</p>\n<p><strong>£50PP (includes a glass of sake per person)</strong></p>\n<p>LIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]</p>\n<h4>BBQ AT THE BARNS WITH BLUES CATERING<br />\nMONDAY 30<sup>TH</sup> AUGUST 2021</h4>\n<p>We are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!</p>\n<p>Blues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.</p>\n<p>This is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.</p>\n<p><strong>£30PP (three courses)</strong></p>\n<p>LIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"905\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]</p>\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING<br />\nSUNDAY 31<sup>ST</sup> OCTOBER</h4>\n<p>Blues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!</p>\n<p>Their ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.</p>\n<p>This is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.</p>\n<p><strong>£35PP (four courses)</strong></p>\n<p>LIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\n','EVENTS','','inherit','closed','closed','','433-autosave-v1','','','2021-05-11 12:44:41','2021-05-11 12:44:41','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=900',0,'revision','',0),(901,1,'2021-05-11 12:29:31','2021-05-11 12:29:31','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736170273{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_empty_space][vc_single_image image=\"898\" img_size=\"600 x 400\" alignment=\"right\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:29:31','2021-05-11 12:29:31','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=901',0,'revision','',0),(902,1,'2021-05-11 12:30:12','2021-05-11 12:30:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736211120{margin-right: 10% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/2\"][vc_single_image image=\"898\" img_size=\"600 x 400\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"1/2\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:30:12','2021-05-11 12:30:12','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=902',0,'revision','',0),(903,1,'2021-05-11 12:31:33','2021-05-11 12:31:33','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736291570{margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"600 x 400\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:31:33','2021-05-11 12:31:33','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=903',0,'revision','',0),(904,1,'2021-05-11 12:32:11','2021-05-11 12:32:11','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:32:11','2021-05-11 12:32:11','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=904',0,'revision','',0),(905,1,'2021-05-11 12:36:19','2021-05-11 12:36:19','','Blues-Catering-Game-Lunch','','inherit','open','closed','','blues-catering-game-lunch','','','2021-05-11 12:36:19','2021-05-11 12:36:19','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg',0,'attachment','image/jpeg',0),(906,1,'2021-05-11 12:38:14','2021-05-11 12:38:14','','sushi-night_Thirsk-lodge-Barns','','inherit','open','closed','','sushi-night_thirsk-lodge-barns','','','2021-05-11 12:38:14','2021-05-11 12:38:14','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg',0,'attachment','image/jpeg',0),(907,1,'2021-05-11 12:38:20','2021-05-11 12:38:20','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"853\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"906\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"905\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:38:20','2021-05-11 12:38:20','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=907',0,'revision','',0),(908,1,'2021-05-11 12:39:21','2021-05-11 12:39:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"853\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY - SUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR - <strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"906\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT – WEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING – MONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"905\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING – SUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:39:21','2021-05-11 12:39:21','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=908',0,'revision','',0),(909,1,'2021-05-11 12:40:38','2021-05-11 12:40:38','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"853\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY\r\nSUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR\r\n<strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"906\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT\r\nWEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING\r\nMONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"905\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING\r\nSUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 12:40:38','2021-05-11 12:40:38','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=909',0,'revision','',0),(910,1,'2021-05-11 12:43:51','2021-05-11 12:43:51','','Open-Day_Thirsk-Lodge-Barns','','inherit','open','closed','','open-day_thirsk-lodge-barns','','','2021-05-11 12:43:51','2021-05-11 12:43:51','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg',0,'attachment','image/jpeg',0),(911,1,'2021-05-11 12:48:03','2021-05-11 12:48:03','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"832\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-autosave-v1','','','2021-05-11 12:48:03','2021-05-11 12:48:03','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=911',0,'revision','',0),(912,1,'2021-05-11 12:48:09','2021-05-11 12:48:09','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"832\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-11 12:48:09','2021-05-11 12:48:09','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=912',0,'revision','',0),(913,1,'2021-05-11 12:48:48','2021-05-11 12:48:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"910\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.\r\n\r\nWith the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.\r\n\r\nWe can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-restaurant/\"]\r\n<h3 style=\"text-align: center;\">EVENTS &amp; RESTUARANT</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-11 12:48:48','2021-05-11 12:48:48','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=913',0,'revision','',0),(914,1,'2021-05-11 12:49:48','2021-05-11 12:49:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"739\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 12:49:48','2021-05-11 12:49:48','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=914',0,'revision','',0),(915,1,'2021-05-11 12:49:56','2021-05-11 12:49:56','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Santa. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"739\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 12:49:56','2021-05-11 12:49:56','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=915',0,'revision','',0),(916,1,'2021-05-11 12:51:00','2021-05-11 12:51:00','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"739\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 12:51:00','2021-05-11 12:51:00','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=916',0,'revision','',0),(917,1,'2021-05-11 12:53:10','2021-05-11 12:53:10','','ANNA-MARTOLA','','inherit','open','closed','','anna-martola','','','2021-05-11 12:53:10','2021-05-11 12:53:10','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/ANNA-MARTOLA.jpg',0,'attachment','image/jpeg',0),(918,1,'2021-05-11 12:53:17','2021-05-11 12:53:17','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"917\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 12:53:17','2021-05-11 12:53:17','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=918',0,'revision','',0),(919,1,'2021-05-11 12:55:05','2021-05-11 12:55:05','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h4\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div class=\"WordSection1\">\r\n<h4 style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"><b><u>click here</u></b></a> to see our Public Events</h4>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></h3>\r\n</div>\r\n</div>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-11 12:55:05','2021-05-11 12:55:05','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=919',0,'revision','',0),(920,1,'2021-05-11 12:56:04','2021-05-11 12:56:04','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"><b><u>click here</u></b></a> to see our Public Events</p>\r\n\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-11 12:56:04','2021-05-11 12:56:04','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=920',0,'revision','',0),(921,1,'2021-05-11 12:56:39','2021-05-11 12:56:39','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/4\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/4\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"><b><u>click here</u></b></a> to see our Public Events</p>\r\n\r\n</div>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-11 12:56:39','2021-05-11 12:56:39','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=921',0,'revision','',0),(922,1,'2021-05-11 13:34:35','2021-05-11 13:34:35','','Christmas-Market_Thirsk-Lodge-Barns','','inherit','open','closed','','christmas-market_thirsk-lodge-barns-2','','','2021-05-11 13:34:35','2021-05-11 13:34:35','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Christmas-Market_Thirsk-Lodge-Barns-1.jpg',0,'attachment','image/jpeg',0),(923,1,'2021-05-11 13:34:41','2021-05-11 13:34:41','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"922\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 13:34:41','2021-05-11 13:34:41','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=923',0,'revision','',0),(925,1,'2021-05-11 15:23:06','2021-05-11 15:23:06','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"922\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 15:23:06','2021-05-11 15:23:06','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=925',0,'revision','',0),(926,1,'2021-05-11 15:24:12','2021-05-11 15:24:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 15:24:12','2021-05-11 15:24:12','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=926',0,'revision','',0),(927,1,'2021-05-11 15:29:22','2021-05-11 15:29:22','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620727738072{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"910\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>OPEN DAY\r\nSUNDAY 1<sup>ST</sup> AUGUST 2021</h4>\r\nWe Are Open!\r\n\r\nAfter 15 months of building and renovating, we are finally able to open our doors and welcome everyone in for good old nosey! You can enjoy a wander through the Main Barn, the Dining Room, the Wheelhouse and into the Courtyard. Our Team will be on hand to answer any questions you might have about the venue and the build throughout the day.\r\n\r\nThe Bar will be open throughout the event for tea, coffee and drinks.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727771451{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"804\" img_size=\"600 x 400\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>WEDDING FAIR\r\n<strong>SUNDAY 8<sup>TH</sup> AUGUST 2021</strong></h4>\r\nCome along and see Thirsk Lodge Barns set up for weddings, meet some of our recommended suppliers and say hi to our team. We can arrange escorted viewings if you would like to know more about hosting your wedding with us, however please feel free to come and nosey unescorted if you would prefer.\r\n\r\nOpen from 11am – 3pm. The Bar will be open throughout the event for tea, coffee and drinks. There will be some small tasting bites served by one of our recommended suppliers, Blues Catering.\r\n\r\nDue to COVID, please book your place in through our booking system. There is no charge for this event.\r\n\r\n<strong>Open from 11am – 3pm.</strong>[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727782282{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"906\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUSHI NIGHT\r\nWEDNESDAY 18<sup>TH</sup> AUGUST 2021</h4>\r\nYorkshire isn’t necessarily known for its sushi, but Henny’s Kitchen is! Henny’s Sushi Boxes went wild during lockdown so we have collaborated with her to bring a night of sushi and sake to Thirsk Lodge Barns.\r\n\r\nYou will enjoy chicken and mushroom dumplings with a spicy tom yum broth, a huge selection of sushi and sashimi, edamame beans with soya sauce and bao buns with char sui pork, coriander and sesame, alongside some Japanese sake. The food will be served onto sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is an evening event, with one sitting at 8pm, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from 7pm.\r\n\r\n<strong>£50PP (includes a glass of sake per person)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620736318401{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"898\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>BBQ AT THE BARNS WITH BLUES CATERING\r\nMONDAY 30<sup>TH</sup> AUGUST 2021</h4>\r\nWe are teaming up with Blues Catering, who specialise in traditional cooking techniques including smoking and barbecuing directly over fire, to bring you’re the hottest BBQ of the Summer!\r\n\r\nBlues Catering are all about ‘The Feast’; bringing people together around a table to enjoy beautiful dishes with a whole lot of flavour. Their food is served on rustic platters and sharing boards and therefore we can only take bookings for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£30PP (three courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620727808778{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"905\" img_size=\"full\" qode_css_animation=\"\"][vc_empty_space height=\"12px\"][/vc_column][vc_column width=\"2/5\"][vc_column_text]\r\n<h4>SUNDAY GAME LUNCH WITH BLUES CATERING\r\nSUNDAY 31<sup>ST</sup> OCTOBER</h4>\r\nBlues Catering specialise in traditional cooking techniques such as barbecuing directly over fire and slow smoking food. For this particular event they are twinning these techniques with local, seasonal game to bring you a Sunday lunch with a difference!\r\n\r\nTheir ethos centres around Feasting, served on rustic platters and sharing boards to create a relaxed dining experience. Therefore, we are taking bookings for our Sunday Game Lunch for groups of 6 or more.\r\n\r\nThis is a lunch time event with one sitting, but please come along earlier for a drink in our stunning courtyard beforehand. We will be open from midday.\r\n\r\n<strong>£35PP (four courses)</strong>\r\n\r\nLIMITED PLACES.[/vc_column_text][vc_empty_space height=\"20px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING ESSENTIAL - COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','433-revision-v1','','','2021-05-11 15:29:22','2021-05-11 15:29:22','',433,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=927',0,'revision','',0),(928,1,'2021-05-11 15:30:07','2021-05-11 15:30:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"832\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-11 15:30:07','2021-05-11 15:30:07','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=928',0,'revision','',0),(929,1,'2021-05-11 15:30:45','2021-05-11 15:30:45','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">BUSINESS</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"910\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_empty_space height=\"28px\"][vc_column_text]Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.\r\n\r\nWith the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.\r\n\r\nWe can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"743\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620337709284{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','BUSINESS','','inherit','closed','closed','','440-revision-v1','','','2021-05-11 15:30:45','2021-05-11 15:30:45','',440,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=929',0,'revision','',0),(930,1,'2021-05-11 15:31:29','2021-05-11 15:31:29','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"10% 22% 10% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"922\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-autosave-v1','','','2021-05-11 15:31:29','2021-05-11 15:31:29','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=930',0,'revision','',0),(931,1,'2021-05-11 15:31:38','2021-05-11 15:31:38','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"10% 22% 10% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h3>...Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"922\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 15:31:38','2021-05-11 15:31:38','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=931',0,'revision','',0),(932,1,'2021-05-11 15:34:20','2021-05-11 15:34:20','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Closed\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"><b><u>click here</u></b></a> to see our Public Events</p>\r\n\r\n</div>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-11 15:34:20','2021-05-11 15:34:20','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=932',0,'revision','',0),(933,1,'2021-05-11 15:38:09','2021-05-11 15:38:09','','Thirsk-lodge-Barns_Closed-icon','','inherit','open','closed','','thirsk-lodge-barns_closed-icon','','','2021-05-11 15:38:09','2021-05-11 15:38:09','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg',0,'attachment','image/jpeg',0),(934,1,'2021-05-11 15:38:19','2021-05-11 15:38:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">AVAILABILITY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/6\"][/vc_column][vc_column width=\"2/3\"][wpsbc id=\"1\" title=\"no\" legend=\"no\" language=\"auto\" display=\"12\" dropdown=\"no\" jump=\"yes\" columns=\"3\"][/vc_column][vc_column width=\"1/6\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"751\" title=\"Public Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"750\" title=\"Private Event\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][icon_text box_type=\"normal\" icon_type=\"normal\" icon_position=\"top\" icon_size=\"fa-lg\" use_custom_icon_size=\"no\" title_tag=\"h5\" separator=\"no\" image=\"933\" title=\"Closed\" title_color=\"#404d56\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">Please <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"><b><u>click here</u></b></a> to see our Public Events</p>\r\n\r\n</div>\r\n[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]\r\n<div>\r\n<div class=\"WordSection1\">\r\n<p style=\"text-align: center;\">For Barn Hire Prices please email <a class=\"\" href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a></p>\r\n\r\n</div>\r\n</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','AVAILABILITY','','inherit','closed','closed','','374-revision-v1','','','2021-05-11 15:38:19','2021-05-11 15:38:19','',374,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=934',0,'revision','',0),(935,1,'2021-05-11 15:39:07','2021-05-11 15:39:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">PRIVATE HIRE</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"616\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 0 15% 14%\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text] Thirsk Lodge Barns is an exclusive use venue hosting everything from private parties to photography workshops, yoga retreats, talks and conferences. Whatever you are thinking of hosting, we have the venue, and the experience, to help you plan your prefect private event.\r\n\r\nSubject to availability, you can hire the venue by the hour, or for a full day/evening.\r\n\r\nIf you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.[/vc_column_text][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"832\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">If you are interested in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620476620860{margin-right: 4% !important;margin-left: 4% !important;padding-top: 5% !important;}\" z_index=\"\"][vc_column width=\"1/3\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/3\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','PRIVATE HIRE','','inherit','closed','closed','','435-revision-v1','','','2021-05-11 15:39:07','2021-05-11 15:39:07','',435,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=935',0,'revision','',0),(936,1,'2021-05-11 15:40:06','2021-05-11 15:40:06','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,814,582,841,580,804,827,815,576,853\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row]</p>\r\n','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-11 15:40:06','2021-05-11 15:40:06','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=936',0,'revision','',0),(937,1,'2021-05-11 15:41:51','2021-05-11 15:41:51','','Thirsk-Lodge-Barns_Wedding-venue-Barns','','inherit','open','closed','','thirsk-lodge-barns_wedding-venue-barns','','','2021-05-11 15:41:51','2021-05-11 15:41:51','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-Barns.jpg',0,'attachment','image/jpeg',0),(938,1,'2021-05-11 15:42:04','2021-05-11 15:42:04','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"937\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]<br />\r\n[/vc_column_text][/vc_column][/vc_row]</p>\r\n','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-11 15:42:04','2021-05-11 15:42:04','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=938',0,'revision','',0),(939,1,'2021-05-11 15:43:51','2021-05-11 15:43:51','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">THE BARNS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_single_image image=\"477\" img_size=\"full\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"582\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Main Barn</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]For weddings, this majestic old, red brick barn is used ceremonies and then transforms into the dance floor for the evening reception.</p>\r\n<p>It overlooks fields of grass and wild flowers and it has a mezzanine which is perfect for readers/singers during your ceremony, to capture a group photo with all your guests from, or even for your DJ to play from in the evening.</p>\r\n<p>A wall of fairy lights behind the ceremony table is the perfect backdrop for those all-important photos![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Bar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This stunning room has a whole wall that opens out on the Courtyard. With exposed beams and pillars, but a modern copper topped bar – the space still captures the old features of the Barns, but with a more modern twist![/vc_column_text][vc_column_text]For more information on the drinks available, please visit our <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\">Food and Drinks page.</a>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"584\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"576\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Dining Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]With open trusses, a large skylight and a beautiful oak floor, our stunning Dining Room suits either round tables or long trestle tables – both of which we have.</p>\r\n<p>There is a separate bar in here and views overlooking the wild meadow.[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Courtyard</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Housing a 200 year old Spanish olive tree, our courtyard has a gorgeous Mediterranean feel to it. It is sheltered and gets the sun all day long, making it the perfect place for photos, drinks or a breath of fresh air.</p>\r\n<p>We offer large outdoor games and fire pits (bring sparklers and marshmallows!), and there is an open stable area with heaters for some outdoor seating. We also have the option of setting up a pop-up bar out here too![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"804\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"580\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>The Wheelhouse</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a snug room with soft furniture in which is a great escape for kids to watch TV or for your guests to pop their feet up.</p>\r\n<p>With stunning views of the meadow, the Wheelhouse is set just off the Main Barn and is a great escape for those guests wanting a breather from the dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]</p>\r\n<h3>VIP Room</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]This is a private room for the bridal couple; a place to meet the registrar before you get married (if you choose to get married on site) and then somewhere to keep a change of shoes, bag of make up or to take 5 from the busy day![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"694\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]</p>\r\n','THE BARNS','','inherit','closed','closed','','447-revision-v1','','','2021-05-11 15:43:51','2021-05-11 15:43:51','',447,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=939',0,'revision','',0),(940,1,'2021-05-11 15:45:19','2021-05-11 15:45:19','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 15:45:19','2021-05-11 15:45:19','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=940',0,'revision','',0),(941,1,'2021-05-11 15:45:35','2021-05-11 15:45:35','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 15:45:35','2021-05-11 15:45:35','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=941',0,'revision','',0),(942,1,'2021-05-11 20:27:32','2021-05-11 20:27:32','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][vc_empty_space][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-11 20:27:32','2021-05-11 20:27:32','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=942',0,'revision','',0),(943,1,'2021-05-11 20:28:30','2021-05-11 20:28:30','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 10%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 20:28:30','2021-05-11 20:28:30','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=943',0,'revision','',0),(944,1,'2021-05-11 20:29:50','2021-05-11 20:29:50','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 20:29:50','2021-05-11 20:29:50','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=944',0,'revision','',0),(945,1,'2021-05-11 20:30:23','2021-05-11 20:30:23','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column][vc_column][/vc_column]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 20:30:23','2021-05-11 20:30:23','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=945',0,'revision','',0),(946,1,'2021-05-11 20:31:07','2021-05-11 20:31:07','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 20:31:07','2021-05-11 20:31:07','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=946',0,'revision','',0),(948,1,'2021-05-11 20:31:48','2021-05-11 20:31:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512562485256{padding-top: 126px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 20:31:48','2021-05-11 20:31:48','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=948',0,'revision','',0),(949,1,'2021-05-11 20:32:25','2021-05-11 20:32:25','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620765143367{padding-top: 0px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 20:32:25','2021-05-11 20:32:25','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=949',0,'revision','',0),(950,1,'2021-05-11 20:32:42','2021-05-11 20:32:42','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620765143367{padding-top: 0px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 20:32:42','2021-05-11 20:32:42','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=950',0,'revision','',0),(951,1,'2021-05-11 20:33:47','2021-05-11 20:33:47','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"937\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/what\'s-on\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S ON</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-11 20:33:47','2021-05-11 20:33:47','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=951',0,'revision','',0),(952,1,'2021-05-11 20:35:05','2021-05-11 20:35:05','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\nYou are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!\r\n\r\nAs well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn\r\n\r\n• Large ceremony table\r\n\r\n• Easel\r\n\r\n• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)\r\n\r\n• Dining tables and chairs\r\n\r\n• Optional pop-up bar in the courtyard\r\n\r\n• Optional outdoor heaters in the Stables\r\n\r\n• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)\r\n\r\n• Glass hire\r\n\r\n• Bar Staff\r\n\r\n• TV in the Wheelhouse (great for keeping kids occupied!)\r\n\r\n• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"937\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1512723181048{padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"355\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"356\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"15px\"][vc_single_image image=\"357\" img_size=\"full\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_column_text]\r\n[/vc_column_text][/vc_column][/vc_row]','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-11 20:35:05','2021-05-11 20:35:05','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=952',0,'revision','',0),(953,1,'2021-05-11 20:39:02','2021-05-11 20:39:02','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CHRISTMAS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"738\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"10% 22% 10% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<blockquote>\r\n<div>\r\n<div class=\"WordSection1\">\r\n<h3 style=\"text-align: left;\">Get! Ready!</h3>\r\n<h3 style=\"text-align: left;\">The ultimate Christmas Experience is coming…</h3>\r\n</div>\r\n</div></blockquote>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h3>Father Christmas</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance![/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\" custom_class=\"custom_holder_reverse_order\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Wreath Making</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Join one of our stunning Wreath Making courses, which will take place towards the end of November, so that you head into December ready for the most festive season yet. We all need it after the rather unusual Christmas last year! [/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"737\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item cover=\"yes\" advanced_animations=\"no\" background_image=\"922\" item_padding=\"0% 0% 0% 0%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"55% 25% 25% 25%\" item_padding_480_600=\"60% 0% 60% 0%\" item_padding_480=\"60% 0% 60% 0%\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"21% 22% 23.2% 16%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\" background_color=\"#ffffff\"][vc_column_text]\r\n<h3>Christmas Market</h3>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Between 13th December and 23rd December our Christmas Market will be the perfect place to pick up presents, whilst supporting local artisan craftsmen. Why not pop along to enjoy a spot of shopping, a glass of mulled wine and get into the festive spirit at Thirsk Lodge Barns.\r\n[/vc_column_text][vc_empty_space height=\"40px\"][button target=\"_self\" hover_type=\"default\" text=\"BOOKING COMING SOON\" color=\"#404d56\" hover_color=\"#ffffff\" background_color=\"transparent\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\"][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','CHRISTMAS','','inherit','closed','closed','','437-revision-v1','','','2021-05-11 20:39:02','2021-05-11 20:39:02','',437,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=953',0,'revision','',0),(954,1,'2021-05-11 20:41:22','2021-05-11 20:41:22','','thirsk-lodge-barns-on-Hitched','','inherit','open','closed','','thirsk-lodge-barns-on-hitched','','','2021-05-11 20:41:22','2021-05-11 20:41:22','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched.jpg',0,'attachment','image/jpeg',0),(955,1,'2021-05-11 20:41:48','2021-05-11 20:41:48','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"954\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-11 20:41:48','2021-05-11 20:41:48','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=955',0,'revision','',0),(956,1,'2021-05-11 20:43:21','2021-05-11 20:43:21','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"954\" img_size=\"150 x 150\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-11 20:43:21','2021-05-11 20:43:21','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=956',0,'revision','',0),(957,1,'2021-05-11 20:44:58','2021-05-11 20:44:58','','thirsk-lodge-barns-on-Hitched','','inherit','open','closed','','thirsk-lodge-barns-on-hitched-2','','','2021-05-11 20:44:58','2021-05-11 20:44:58','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',0,'attachment','image/jpeg',0),(958,1,'2021-05-11 20:45:12','2021-05-11 20:45:12','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620687438932{padding-top: 8% !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"810\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.6\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_single_image image=\"802\" img_size=\"full\" qode_css_animation=\"element_from_left\" transition_delay=\"0.3\"][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12\"][vc_empty_space height=\"38px\"][vc_column_text]\r\n<h2>A Stunning Wedding and Events Venue</h2>\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_empty_space height=\"15px\"][vc_column_text]Thirsk Lodge Barns is a stunning, exclusive use venue for weddings and events in the heart of North Yorkshire.\r\n\r\n[/vc_column_text][vc_empty_space height=\"12px\"][vc_column_text]Opening in July 2021, Thirsk Lodge Barns are now taking bookings for weddings and events.[/vc_column_text][vc_empty_space height=\"38px\"][button target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\" color=\"#404d56\" hover_color=\"#ffffff\" hover_background_color=\"#404d56\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"2\" background_color=\"transparent\"][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620687054677{margin-right: 4% !important;margin-left: 4% !important;padding-top: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\"]\r\n<h3 style=\"text-align: center;\">WEDDINGS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"38px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"807\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process our team will be on call to help with organising your day. We have years of experience planning weddings and events, and can help recommend suppliers, advise on drinks and decorations, and answer any of those ‘not-so-sure’ questions!\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"FIND OUT MORE\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"center\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512483421103{padding-top: 108px !important;}\"][vc_column][vc_column_text]\r\n<h2>Happy Customers</h2>\r\n[/vc_column_text][vc_empty_space height=\"26px\"][vc_separator type=\"small\" position=\"center\" color=\"#000000\" transparency=\"1\" thickness=\"1\" width=\"91\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0 7% 0 7%\"][testimonials_carousel number=\"3\" show_navigation=\"yes\" navigation_style=\"dark\" auto_rotate_slides=\"5\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','Home','','inherit','closed','closed','','271-revision-v1','','','2021-05-11 20:45:12','2021-05-11 20:45:12','',271,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=958',0,'revision','',0),(960,1,'2021-05-11 20:48:21','2021-05-11 20:48:21','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','accreditations row','','draft','closed','closed','','accreditations-row','','','2021-05-13 10:20:52','2021-05-13 10:20:52','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=960',0,'page','',0),(961,1,'2021-05-11 20:48:21','2021-05-11 20:48:21','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','accreditations row','','inherit','closed','closed','','960-revision-v1','','','2021-05-11 20:48:21','2021-05-11 20:48:21','',960,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=961',0,'revision','',0),(962,1,'2021-05-11 20:50:07','2021-05-11 20:50:07','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WEDDINGS</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620299920722{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"615\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"631\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD AND DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620300028057{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\"]</p>\r\n<h3 style=\"text-align: center;\">CONTACT US</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"812\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Throughout the booking and planning process, our team will be on call to help with organising your day. We have suppliers we can recommend, and our experience in running weddings and events means we can advise where needed.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','WEDDINGS','','inherit','closed','closed','','403-revision-v1','','','2021-05-11 20:50:07','2021-05-11 20:50:07','',403,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=962',0,'revision','',0),(963,1,'2021-05-11 20:51:18','2021-05-11 20:51:18','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">WHAT\'S INCLUDED</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"20px 15px 0 0\"][vc_single_image image=\"843\" img_size=\"600 x 600\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">Planning...</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">…from the moment you book your wedding or event at Thirsk Lodge Barns, our team of Event Coordinators are on hand to help you with every step of your planning.</p>\r\n<p style=\"text-align: left;\">We can recommend local suppliers, advise on decorations, help plan the timings of the day and we can even show your suppliers round the venue if you can’t arrange a time that suits you both.</p>\r\n<p style=\"text-align: left;\">With years of experience, we are here to answer all of those ‘not-so-sure’ questions!</p>\r\n<p>You are also welcome to come and set up the day before – which means you can add your own touches to the venue ahead of your big day (and get a good night’s sleep the night before knowing it’s all set up just as you wanted it to be!).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"40px 15px 0 0\"][vc_single_image image=\"814\" img_size=\"600 x 800\" qode_css_animation=\"\" transition_delay=\"0.4\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"30px 0% 0 43px\" item_padding_600_768=\"30px 0% 0 0px\" item_padding_480=\"30px 0% 0 0px\"][vc_empty_space height=\"22px\"][vc_column_text]</p>\r\n<h2 style=\"text-align: left;\">On the day....</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"15px\"][vc_column_text]…you will be looked after by an Event Coordinator. They will coordinate with your chosen caterer, florist and entertainment etc., as well as ensure the timings of your day fit with your requests; so you can relax and enjoy every minute without any worries!</p>\r\n<p>As well as exclusive use of the venue on the day of your wedding/event, we also include the use of:[/vc_column_text][vc_empty_space height=\"22px\"][vc_column_text]• Chairs for your ceremony in the Main Barn</p>\r\n<p>• Large ceremony table</p>\r\n<p>• Easel</p>\r\n<p>• Wall of fairy lights in the Main Barn (which will look spectacular for those all-important photos!)</p>\r\n<p>• Dining tables and chairs</p>\r\n<p>• Optional pop-up bar in the courtyard</p>\r\n<p>• Optional outdoor heaters in the Stables</p>\r\n<p>• Use of our wrought iron rings in the Main Barn; prefect for dressing up with flowers or fairy lights (or both!)</p>\r\n<p>• Glass hire</p>\r\n<p>• Bar Staff</p>\r\n<p>• TV in the Wheelhouse (great for keeping kids occupied!)</p>\r\n<p>• Use of the VIP room; perfect for a breather or makeup touch up for VIP guests (aka the bridal couple).[/vc_column_text][vc_empty_space height=\"22px\"][/qode_elements_holder_item][/qode_elements_holder][vc_empty_space][vc_empty_space height=\"35px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"937\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 0px 168px 0px\" item_padding_480_600=\"184px 0px 168px 0px\" item_padding_480=\"184px 0px 168px 0px\"][vc_column_text]</p>\r\n<h3><span style=\"color: #ffffff;\">Please check our calendar for availability and message us for Barn Hire Prices.<br />\r\n</span></h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"CHECK OUR AVAILABILITY\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"transparent\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINK</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]</p>\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]</p>\r\n','What\'s Included','','inherit','closed','closed','','452-revision-v1','','','2021-05-11 20:51:18','2021-05-11 20:51:18','',452,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=963',0,'revision','',0),(964,1,'2021-05-11 20:52:49','2021-05-11 20:52:49','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space height=\"32\"][vc_column_text]\r\n<h2 style=\"text-align: center;\">FOOD &amp; DRINKS</h2>\r\n[/vc_column_text][vc_empty_space height=\"32\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"602\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Catering</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We have a list of recommended caterers who offer everything from pie and mash or afternoon teas, to fine dining, sharing platters and BBQs.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]You do not have to use one of our recommended caterers however we do ask that you use a professional catering company for all food served on site.[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]For weddings; we recommend having a main ‘Wedding Breakfast’; and then offering something smaller in the evening (such as pizzas, a cheese platter, or your cake!) as guests get hungry with so much dancing![/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" anchor=\"about\" css=\".vc_custom_1619522633058{background-color: #ffffff !important;}\" z_index=\"\"][vc_column][qode_elements_holder number_of_columns=\"two_columns\"][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 10% 10% 16%\" item_padding_1024_1280=\"0% 0% 0% 0%\" item_padding_768_1024=\"0% 0% 0% 0%\" item_padding_600_768=\"0% 0% 0% 0%\" item_padding_480_600=\"0% 0% 0% 0%\" item_padding_480=\"0% 0% 0% 0%\"][vc_single_image image=\"603\" img_size=\"full\" alignment=\"right\" qode_css_animation=\"\"][/qode_elements_holder_item][qode_elements_holder_item advanced_animations=\"no\" background_color=\"#ffffff\" item_padding=\"10% 4% 10% 4%\" item_padding_1024_1280=\"19.8% 17% 23.5% 16%\" item_padding_768_1024=\"16.8% 14% 16.5% 16%\" item_padding_600_768=\"23.8% 22% 19.5% 16%\" item_padding_480_600=\"23.8% 22% 19.5% 16%\" item_padding_480=\"23.8% 22% 19.5% 16%\"][vc_column_text]\r\n<h2>Drinks</h2>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]We provide all of the drinks at Thirsk Lodge Barns; and before each event we will talk through drinks options with you.[/vc_column_text][vc_column_text]For weddings, it is recommended that some drinks are pre-purchased for the drinks reception after your ceremony and for the Wedding Breakfast. The bar will be open for guests to purchase further drinks throughout the day, and you are welcome to arrange a bar tab as well should you wish.[/vc_column_text][vc_column_text]We have our own bar staff. Depending on the size of your event, we will arrange the number of staff required for a smooth running of your drinks throughout the day.[/vc_column_text][vc_column_text]Our bar staff is included in the Barn Hire Price.[/vc_column_text][vc_empty_space height=\"40px\"][button size=\"medium\" icon_pack=\"font_elegant\" target=\"_self\" hover_type=\"default\" text_align=\"center\" text=\"WINE LIST\" hover_color=\"#ffffff\" border_color=\"#404d56\" hover_border_color=\"#404d56\" border_radius=\"0\" color=\"#404d56\" hover_background_color=\"#404d56\" margin=\"0\" background_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"full_width\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"821\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h2><span style=\"color: #ffffff;\">FOOD EVENTS\r\n</span></h2>\r\n[/vc_column_text][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Click here for a full list of the events coming up at Thirsk Lodge Barns\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"OUR EVENTS\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#404d56\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"626\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/\"]\r\n<h3 style=\"text-align: center;\">ACCOMMODATION</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','FOOD & DRINKS','','inherit','closed','closed','','459-revision-v1','','','2021-05-11 20:52:49','2021-05-11 20:52:49','',459,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=964',0,'revision','',0),(965,1,'2021-05-11 20:53:57','2021-05-11 20:53:57','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620765143367{padding-top: 0px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]</p>\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n<p>[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]</p>\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]</p>\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]</p>\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]</p>\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]</p>\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]</p>\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n<p>[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]</p>\r\n','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-11 20:53:57','2021-05-11 20:53:57','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=965',0,'revision','',0),(966,1,'2021-05-11 20:55:21','2021-05-11 20:55:21','<p>[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]</p>\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n<p>[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"794\" zoom=\"13\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``featureType``: ``administrative``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.country``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ff0000``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.province``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#b29e79``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: 65<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``on``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.man_made``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``landscape.natural.landcover``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``lightness``: ``50``<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.business``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#d9d5c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdb6a8``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.place_of_worship``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e9e4db``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: ``-100``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``30``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: ``40``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit``,<br />\r\n``elementType``: ``all``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n},<br />\r\n{<br />\r\n``visibility``: ``simplified``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``hue``: ``#ffff00``<br />\r\n},<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -97<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#a39e95``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``lightness``: -25<br />\r\n},<br />\r\n{<br />\r\n``saturation``: -100<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]</p>\r\n<h2>Get in touch</h2>\r\n<p>[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"20px\"][vc_column_text]</p>\r\n<h5>Address:</h5>\r\n<p>Thirsk Lodge Barns,<br />\r\nNewsham Road,<br />\r\nThirsk,<br />\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h5>Email:</h5>\r\n<p><a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]</p>\r\n<h5>Phone:</h5>\r\n<p>07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]</p>\r\n','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-11 20:55:21','2021-05-11 20:55:21','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=966',0,'revision','',0),(968,1,'2021-05-11 21:02:26','2021-05-11 21:02:26','{\n    \"widget_text[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjE5NzoiPGltZyBjbGFzcz0iYWxpZ25ub25lIHdwLWltYWdlLTc2NyBzaXplLW1lZGl1bSIgc3JjPSJodHRwczovL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51ay93cC1jb250ZW50L3VwbG9hZHMvMjAyMS8wNS9UTEItbG9nb3dlYi0zMDB4OTAucG5nIiBhbHQ9IiIgd2lkdGg9IjMwMCIgaGVpZ2h0PSI5MCIgLz4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"e6dfb78192a09d7db60a98acde7cef28\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-11 21:01:58\"\n    }\n}','','','trash','closed','closed','','f8b324d0-fe1b-4b87-b9a9-890855bb731f','','','2021-05-11 21:02:26','2021-05-11 21:02:26','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=968',0,'customize_changeset','',0),(969,1,'2021-05-11 21:03:38','2021-05-11 21:03:38','{\n    \"widget_text[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjE4NToiPGltZyBjbGFzcz0iYWxpZ25ub25lIHdwLWltYWdlLTc2NyIgc3JjPSJodHRwczovL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51ay93cC1jb250ZW50L3VwbG9hZHMvMjAyMS8wNS9UTEItbG9nb3dlYi0zMDB4OTAucG5nIiBhbHQ9IiIgd2lkdGg9IjE2MCIgaGVpZ2h0PSI0OCIgLz4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"19e2005796d1d0ba8b5b038190052df7\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-11 21:03:38\"\n    }\n}','','','trash','closed','closed','','1e05ddfe-3e09-447a-8862-ae791627e7db','','','2021-05-11 21:03:38','2021-05-11 21:03:38','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/11/1e05ddfe-3e09-447a-8862-ae791627e7db/',0,'customize_changeset','',0),(970,1,'2021-05-11 21:10:34','2021-05-11 21:10:34','','Thirsk-Lodge-Barns-Logo','','inherit','open','closed','','thirsk-lodge-barns-logo','','','2021-05-11 21:10:34','2021-05-11 21:10:34','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns-Logo.png',0,'attachment','image/png',0),(971,1,'2021-05-11 21:10:50','2021-05-11 21:10:50','{\n    \"widget_text[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjIxMToiPGltZyBjbGFzcz0iYWxpZ25ub25lIHdwLWltYWdlLTk3MCBzaXplLW1lZGl1bSIgc3JjPSJodHRwczovL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51ay93cC1jb250ZW50L3VwbG9hZHMvMjAyMS8wNS9UaGlyc2stTG9kZ2UtQmFybnMtTG9nby0zMDB4MTA2LnBuZyIgYWx0PSIiIHdpZHRoPSIzMDAiIGhlaWdodD0iMTA2IiAvPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"6020b755553a96c9a47f5a91cbaf6659\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-11 21:10:50\"\n    }\n}','','','trash','closed','closed','','e1c8a00e-edc2-4c98-9f36-cf3133eb8779','','','2021-05-11 21:10:50','2021-05-11 21:10:50','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/11/e1c8a00e-edc2-4c98-9f36-cf3133eb8779/',0,'customize_changeset','',0),(972,1,'2021-05-11 21:11:25','2021-05-11 21:11:25','{\n    \"widget_text[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjE5OToiPGltZyBjbGFzcz0iYWxpZ25ub25lIHdwLWltYWdlLTk3MCIgc3JjPSJodHRwczovL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51ay93cC1jb250ZW50L3VwbG9hZHMvMjAyMS8wNS9UaGlyc2stTG9kZ2UtQmFybnMtTG9nby0zMDB4MTA2LnBuZyIgYWx0PSIiIHdpZHRoPSIzMjAiIGhlaWdodD0iMTEzIiAvPiI7czo2OiJmaWx0ZXIiO2I6MTtzOjY6InZpc3VhbCI7YjoxO30=\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"a00288647acc05d71608c2a0479324f6\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-11 21:11:25\"\n    }\n}','','','trash','closed','closed','','147b9176-7d75-47d1-9d26-bdd034a7b194','','','2021-05-11 21:11:25','2021-05-11 21:11:25','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/11/147b9176-7d75-47d1-9d26-bdd034a7b194/',0,'customize_changeset','',0),(973,1,'2021-05-11 21:11:45','2021-05-11 21:11:45','{\n    \"widget_text[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjIwMToiPGltZyBjbGFzcz0iYWxpZ25ub25lIHdwLWltYWdlLTk3MCBzaXplLWZ1bGwiIHNyYz0iaHR0cHM6Ly93d3cudGhpcnNrbG9kZ2ViYXJuc3N0YWdpbmcucGFydHJpZGdlY3JlYXRpdmUuY28udWsvd3AtY29udGVudC91cGxvYWRzLzIwMjEvMDUvVGhpcnNrLUxvZGdlLUJhcm5zLUxvZ28ucG5nIiBhbHQ9IiIgd2lkdGg9IjY0MCIgaGVpZ2h0PSIyMjYiIC8+IjtzOjY6ImZpbHRlciI7YjoxO3M6NjoidmlzdWFsIjtiOjE7fQ==\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"0c0f2b3c09819d471fb5f1c6228a203b\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-11 21:11:45\"\n    }\n}','','','trash','closed','closed','','c25daaa0-a2df-47d5-91c5-2d35b88e7a60','','','2021-05-11 21:11:45','2021-05-11 21:11:45','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/05/11/c25daaa0-a2df-47d5-91c5-2d35b88e7a60/',0,'customize_changeset','',0),(974,1,'2021-05-11 21:12:37','2021-05-11 21:12:37','{\n    \"widget_text[5]\": {\n        \"value\": {\n            \"encoded_serialized_instance\": \"YTo0OntzOjU6InRpdGxlIjtzOjA6IiI7czo0OiJ0ZXh0IjtzOjE5NzoiPGltZyBjbGFzcz0iYWxpZ25ub25lIHNpemUtbWVkaXVtIHdwLWltYWdlLTc2NyIgc3JjPSJodHRwczovL3d3dy50aGlyc2tsb2RnZWJhcm5zc3RhZ2luZy5wYXJ0cmlkZ2VjcmVhdGl2ZS5jby51ay93cC1jb250ZW50L3VwbG9hZHMvMjAyMS8wNS9UTEItbG9nb3dlYi0zMDB4OTAucG5nIiBhbHQ9IiIgd2lkdGg9IjMwMCIgaGVpZ2h0PSI5MCIgLz4iO3M6NjoiZmlsdGVyIjtiOjE7czo2OiJ2aXN1YWwiO2I6MTt9\",\n            \"title\": \"\",\n            \"is_widget_customizer_js_value\": true,\n            \"instance_hash_key\": \"d1915a12b65b48dbea209974a2dd4817\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-05-11 21:12:37\"\n    }\n}','','','trash','closed','closed','','3029c7f8-8908-4fba-baf5-cb237cc84c34','','','2021-05-11 21:12:37','2021-05-11 21:12:37','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=974',0,'customize_changeset','',0),(975,1,'2021-05-12 05:45:09','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2021-05-12 05:45:09','0000-00-00 00:00:00','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=975',0,'post','',0),(976,1,'2021-05-13 10:19:59','2021-05-13 10:19:59','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620332378758{margin-right: 4% !important;margin-left: 4% !important;}\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">ACCOMMODATION</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1620765143367{padding-top: 0px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"0px 14% 0 0\" item_padding_1024_1280=\"86px 9% 0 0\" item_padding_768_1024=\"0px 0% 0 0\" item_padding_600_768=\"0px 0% 57px 0\" item_padding_480=\"0 0 47px 0px\"][vc_column_text]\r\n<p style=\"text-align: left;\">On site we have the newly renovated Farmhouse and Laundry Cottage.</p>\r\n<p style=\"text-align: left;\">The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.</p>\r\n<p style=\"text-align: left;\">Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.</p>\r\n<p style=\"text-align: left;\">The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.</p>\r\n<p style=\"text-align: left;\">The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.</p>\r\n<p style=\"text-align: left;\"><span class=\"\">For weddings, you have use of the accommodation the night before and night of your big day.</span></p>\r\n[/vc_column_text][vc_empty_space height=\"40px\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_single_image image=\"626\" img_size=\"600 x 800\" qode_css_animation=\"\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][vc_empty_space height=\"28px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301619505{margin-right: 4% !important;margin-left: 4% !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"365\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/\"]\r\n<h3 style=\"text-align: center;\">THE BARNS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"805\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/\"]\r\n<h3 style=\"text-align: center;\">WHAT\'S INCLUDED</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_empty_space height=\"25px\"][qode_banner image=\"616\"]\r\n<h3 style=\"text-align: center;\">FOOD &amp; DRINKS</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1620301629492{margin-right: 4% !important;margin-left: 4% !important;padding-top: 34px !important;}\" z_index=\"\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"819\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/\"]\r\n<h3 style=\"text-align: center;\">GALLERY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"335\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/\"]\r\n<h3 style=\"text-align: center;\">AVAILABILITY</h3>\r\n[/qode_banner][vc_empty_space height=\"20\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','ACCOMMODATION','','inherit','closed','closed','','457-revision-v1','','','2021-05-13 10:19:59','2021-05-13 10:19:59','',457,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=976',0,'revision','',0),(977,1,'2021-05-13 10:25:24','2021-05-13 10:25:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"794\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','CONTACT','','inherit','closed','closed','','164-autosave-v1','','','2021-05-13 10:25:24','2021-05-13 10:25:24','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=977',0,'revision','',0),(978,1,'2021-05-13 10:25:46','2021-05-13 10:25:46','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">CONTACT</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][qode_google_map snazzy_map_style=\"yes\" custom_map_style=\"true\" google_maps_scroll_wheel=\"false\" address1=\"Thirsk Lodge Barns, Newsham Road, Thirsk, YO7 4DB\" map_height=\"497\" pin=\"794\" zoom=\"13\" snazzy_map_code=\"`{`\r\n{\r\n``featureType``: ``administrative``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.country``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ff0000``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.province``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#b29e79``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: 65\r\n},\r\n{\r\n``visibility``: ``on``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.man_made``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``landscape.natural.landcover``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``lightness``: ``50``\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.business``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#d9d5c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdb6a8``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.place_of_worship``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e9e4db``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: ``-100``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``30``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: ``40``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit``,\r\n``elementType``: ``all``,\r\n``stylers``: `{`\r\n{\r\n``saturation``: -100\r\n},\r\n{\r\n``visibility``: ``simplified``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``hue``: ``#ffff00``\r\n},\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -97\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#a39e95``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels``,\r\n``stylers``: `{`\r\n{\r\n``lightness``: -25\r\n},\r\n{\r\n``saturation``: -100\r\n}\r\n`}`\r\n}\r\n`}`\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" css=\".vc_custom_1512732359627{padding-top: 63px !important;padding-bottom: 93px !important;}\"][vc_column offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\r\n<h2>Get in touch</h2>\r\n[/vc_column_text][vc_empty_space height=\"6px\"][vc_separator type=\"small\" position=\"left\" color=\"#000000\" thickness=\"1\" width=\"66\"][vc_empty_space height=\"20px\"][vc_column_text]\r\n<h5>Address:</h5>\r\nThirsk Lodge Barns,\r\nNewsham Road,\r\nThirsk,\r\nYO7 4DB[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Email:</h5>\r\n<a href=\"mailto:enquiries@thirsklodgebarns.com\">enquiries@thirsklodgebarns.com</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]\r\n<h5>Phone:</h5>\r\n07815 560782[/vc_column_text][vc_empty_space height=\"35px\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8\"][vc_empty_space height=\"35px\"][contact-form-7 id=\"183\" html_class=\"cf7_custom_style_1\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column width=\"1/5\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"957\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"885\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][vc_single_image image=\"883\" alignment=\"center\" qode_css_animation=\"\"][vc_empty_space height=\"10px\"][/vc_column][vc_column width=\"1/5\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row]','CONTACT','','inherit','closed','closed','','164-revision-v1','','','2021-05-13 10:25:46','2021-05-13 10:25:46','',164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=978',0,'revision','',0),(979,1,'2021-05-13 10:35:06','2021-05-13 10:35:06','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\" padding_top=\"30\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">EVENTS</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" css=\".vc_custom_1616227214341{padding-top: 53px !important;}\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"590\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar\"]\r\n<h3 style=\"text-align: center;\">EVENTS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"616\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/\"]\r\n<h3 style=\"text-align: center;\">PRIVATE HIRE</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column width=\"1/2\"][qode_banner image=\"628\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/\"]\r\n<h3 style=\"text-align: center;\">BUSINESS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][vc_column width=\"1/2\"][qode_banner image=\"314\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/\"]\r\n<h3 style=\"text-align: center;\">CHRISTMAS</h3>\r\n[/qode_banner][vc_empty_space height=\"25px\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\"][vc_column][vc_empty_space][/vc_column][/vc_row][vc_row row_type=\"parallax\" parallax_content_width=\"in_grid\" text_align=\"center\" full_screen_section_height=\"no\" background_image=\"609\"][vc_column][qode_elements_holder number_of_columns=\"one_column\"][qode_elements_holder_item advanced_animations=\"no\" item_padding=\"184px 8% 168px 8%\" item_padding_480_600=\"184px 0% 168px 0%\" item_padding_480=\"184px 0% 168px 0%\"][vc_column_text]\r\n<h3><span style=\"color: #ffffff;\">Thirsk Lodge Barns is an exclusive use venue hosting everything from weddings to pop up restaurants, life drawing classes, seasonal events, talks and conferences. If you are interesting in hosting an event at Thirsk Lodge Barns, please get in touch.\r\n</span></h3>\r\n[/vc_column_text][vc_empty_space height=\"35px\"][button size=\"medium\" target=\"_self\" hover_type=\"default\" text=\"GET IN TOUCH\" color=\"#ffffff\" hover_color=\"#ffffff\" link=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/\" border_color=\"#ffffff\" hover_border_color=\"#ffffff\" border_radius=\"2\" hover_background_color=\"#45484b\" background_color=\"transparent\"][/qode_elements_holder_item][/qode_elements_holder][/vc_column][/vc_row][vc_column][/vc_column][vc_column][/vc_column]','EVENTS','','inherit','closed','closed','','413-autosave-v1','','','2021-05-13 10:35:06','2021-05-13 10:35:06','',413,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=979',0,'revision','',0),(980,1,'2021-05-13 11:21:24','2021-05-13 11:21:24','[vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h2 style=\"text-align: center;\">GALLERY</h2>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"grid\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_gallery type=\"image_grid\" images=\"840,615,843,578,836,842,814,582,841,580,804,827,815,576,853\" img_size=\"600x600\" column_number=\"3\" grayscale=\"no\" images_space=\"gallery_with_space\"][/vc_column][/vc_row][vc_row css_animation=\"\" row_type=\"row\" use_row_as_full_screen_section=\"no\" type=\"full_width\" angled_section=\"no\" text_align=\"left\" background_image_as_pattern=\"without_pattern\" z_index=\"\"][vc_column][vc_empty_space][vc_column_text]\r\n<h6 style=\"text-align: center;\">Photos by <a href=\"https://georginaharrisonphotography.co.uk/\">GEORGINAHARRISONPHOTOGRAPHY</a></h6>\r\n[/vc_column_text][vc_empty_space][/vc_column][/vc_row]','Gallery','','inherit','closed','closed','','187-revision-v1','','','2021-05-13 11:21:24','2021-05-13 11:21:24','',187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=980',0,'revision','',0),(981,1,'2021-05-13 11:28:43','2021-05-13 11:28:43','','thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo','','inherit','open','closed','','thirsk-lodge-barns_wedding-and-event-venue_logo','','','2021-05-13 11:28:43','2021-05-13 11:28:43','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo.png',0,'attachment','image/png',0),(982,1,'2021-05-13 11:33:48','2021-05-13 11:33:48','','Wedding Venue_Thirsk Lodge Barn','','inherit','open','closed','','wedding-venue_thirsk-lodge-barn','','','2021-05-13 11:33:48','2021-05-13 11:33:48','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Venue_Thirsk-Lodge-Barn.png',0,'attachment','image/png',0),(983,1,'2021-05-13 11:35:35','2021-05-13 11:35:35','','Thirsk Lodge Barns Logo for web','','inherit','open','closed','','thirsk-lodge-barns-logo-for-web','','','2021-05-13 11:35:35','2021-05-13 11:35:35','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns-Logo-for-web.png',0,'attachment','image/png',0),(984,1,'2021-05-13 11:39:08','2021-05-13 11:39:08','','TLB-600','','inherit','open','closed','','tlb-600','','','2021-05-13 11:39:08','2021-05-13 11:39:08','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-600.png',0,'attachment','image/png',0),(985,1,'2021-05-13 11:41:25','2021-05-13 11:41:25','','TLB-600','','inherit','open','closed','','tlb-600-2','','','2021-05-13 11:41:25','2021-05-13 11:41:25','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-600-1.png',0,'attachment','image/png',0),(986,1,'2021-05-13 11:42:06','2021-05-13 11:42:06','','TLB-350','','inherit','open','closed','','tlb-350','','','2021-05-13 11:42:06','2021-05-13 11:42:06','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-350.png',0,'attachment','image/png',0),(987,1,'2021-05-13 11:43:25','2021-05-13 11:43:25','','TLB-243','','inherit','open','closed','','tlb-243','','','2021-05-13 11:43:25','2021-05-13 11:43:25','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-243.png',0,'attachment','image/png',0),(988,1,'2021-05-13 11:47:36','2021-05-13 11:47:36','','TLB-logo_Whiteweb','','inherit','open','closed','','tlb-logo_whiteweb','','','2021-05-13 11:47:36','2021-05-13 11:47:36','',0,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png',0,'attachment','image/png',0);
/*!40000 ALTER TABLE `wpgb_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_revslider_css`
--

DROP TABLE IF EXISTS `wpgb_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hover` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `advanced` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_css`
--

LOCK TABLES `wpgb_revslider_css` WRITE;
/*!40000 ALTER TABLE `wpgb_revslider_css` DISABLE KEYS */;
INSERT INTO `wpgb_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(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','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(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','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"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\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"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\":\"-\"}'),(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\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"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\":\"-\"}');
/*!40000 ALTER TABLE `wpgb_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_revslider_css_bkp`
--

DROP TABLE IF EXISTS `wpgb_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `hover` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `advanced` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_css_bkp`
--

LOCK TABLES `wpgb_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wpgb_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wpgb_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `wpgb_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_revslider_layer_animations`
--

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

--
-- Dumping data for table `wpgb_revslider_layer_animations`
--

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

--
-- Table structure for table `wpgb_revslider_layer_animations_bkp`
--

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

--
-- Dumping data for table `wpgb_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wpgb_revslider_navigations`
--

DROP TABLE IF EXISTS `wpgb_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_navigations`
--

LOCK TABLES `wpgb_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wpgb_revslider_navigations` DISABLE KEYS */;
INSERT INTO `wpgb_revslider_navigations` VALUES (1,'Bullets','bullets','bullets','.bullets.tp-bullets {\n}\n\n.bullets .tp-bullet {\n    overflow:hidden;\n    border-radius:50%;\n    width:11px;\n    height:11px;\n    background-color: #e1e1e1;\n    border: 0px solid #e1e1e1;\n    -webkit-transition: background 0.3s ease;\n    transition: background 0.3s ease;\n    position:absolute;\n}\n\n.bullets .tp-bullet:hover,\n.bullets .tp-bullet.selected {\n	  background-color: #d79d59;\n}','<span class=\\\"tp-bullet-image\\\"></span>\n<span class=\\\"tp-bullet-title\\\"></span>','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{},\"presets\":{},\"version\":\"6.0.0\"}');
/*!40000 ALTER TABLE `wpgb_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `wpgb_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wpgb_revslider_sliders`
--

DROP TABLE IF EXISTS `wpgb_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `alias` tinytext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_sliders`
--

LOCK TABLES `wpgb_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wpgb_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wpgb_revslider_sliders` VALUES (1,'Home','home','{\"id\":\"\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home\\\\\\\"]\",\"layouttype\":\"fullscreen\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":\"55\",\"maxProducts\":\"30\",\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":\"1200\",\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"transient\":\"1200\",\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":\"1200\",\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":\"1200\",\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":\"1200\",\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":\"1200\",\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":\"300\",\"delay\":\"9000\",\"background\":{\"fit\":\"cover\",\"fitX\":\"100\",\"fitY\":\"100\",\"position\":\"center center\",\"positionX\":\"0\",\"positionY\":\"0\",\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":\"0\",\"blurEnd\":\"0\",\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":\"100\",\"fitStart\":\"100\",\"xEnd\":\"0\",\"yEnd\":\"0\",\"xStart\":\"0\",\"yStart\":\"0\",\"rotateStart\":\"0\",\"rotateEnd\":\"0\"}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"fullScreenOffsetContainer\":\".touch .qode-mobile-header\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1920,\"n\":1100,\"t\":850,\"m\":480},\"height\":{\"d\":868,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":\"0\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":\"3\",\"maxRotation\":\"0\",\"paddingTop\":\"0\",\"paddingBottom\":\"0\",\"rotation\":false,\"scaleDown\":50,\"space\":\"0\",\"speed\":\"800\",\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":\"-1\"},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":\"0\",\"dottedOverlay\":\"none\",\"shadow\":\"0\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#dfa057\",\"type\":\"1\"},\"position\":{\"marginTop\":\"0\",\"marginBottom\":\"0\",\"marginLeft\":\"0\",\"marginRight\":\"0\",\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":\"0\",\"hideAllLayersUnderLimit\":\"0\",\"hideSliderUnderLimit\":\"0\"},\"general\":{\"slideshow\":{\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":\"0\",\"stopAtSlide\":\"2\",\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"20%\",\"presetSliderHeight\":false,\"initDelay\":\"0\",\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":false,\"height\":\"5\",\"position\":\"top\",\"color\":\"rgba(0,0,0,0.15)\"},\"firstSlide\":{\"set\":false,\"duration\":\"300\",\"slotAmount\":\"7\",\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":\"100\",\"height\":\"50\"},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":\"1\",\"velocity\":\"75\"},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":1000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":\"20\",\"offsetY\":\"0\",\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":2000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":4000,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\",\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":\"5\",\"direction\":\"horizontal\",\"height\":\"50\",\"width\":\"100\",\"widthMin\":\"100\",\"innerOuter\":\"inner\",\"offsetX\":\"0\",\"offsetY\":\"20\",\"space\":\"5\",\"align\":\"slider\",\"padding\":\"5\",\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":true,\"rtl\":false,\"style\":1,\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0\",\"offsetY\":\"30\",\"align\":\"slider\",\"space\":\"17\",\"hideDelay\":\"200\",\"hideDelayMobile\":\"1200\",\"hideOver\":false,\"hideOverLimit\":\"0\",\"hideUnder\":false,\"hideUnderLimit\":\"0\"}},\"troubleshooting\":{\"ignoreHeightChanges\":false,\"ignoreHeightChangesUnderLimit\":\"0\",\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":false,\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"46\",\"47\",\"48\",\"49\",\"50\",\"51\",\"55\"],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":\"65\"},\"mouse\":{\"speed\":\"400\",\"bgSpeed\":\"0\",\"layersSpeed\":\"0\",\"origo\":\"enterpoint\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":\"10\",\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":true,\"tilt\":\"30\",\"layers\":false},\"version\":\"6.4.0\"}','{\"version\":\"6.4.0\"}','');
/*!40000 ALTER TABLE `wpgb_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `wpgb_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `alias` tinytext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_sliders_bkp`
--

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

--
-- Table structure for table `wpgb_revslider_slides`
--

DROP TABLE IF EXISTS `wpgb_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_slides`
--

LOCK TABLES `wpgb_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wpgb_revslider_slides` DISABLE KEYS */;
INSERT INTO `wpgb_revslider_slides` VALUES (1,1,1,'{\"title\":\"Slide\",\"bg\":{\"type\":\"solid\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"The Natural Food & Beverages\",\"alias\":\"The Natural Food & B...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"705px\",\"e\":true},\"n\":{\"v\":\"705px\",\"e\":true},\"t\":{\"v\":\"705px\",\"e\":true},\"m\":{\"v\":\"334px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"79px\",\"e\":true}},\"originalWidth\":\"705px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-296px\",\"e\":true},\"n\":{\"v\":\"-81px\",\"e\":true},\"t\":{\"v\":\"62px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-100px\",\"e\":true},\"t\":{\"v\":\"-314px\",\"e\":true},\"m\":{\"v\":\"-214px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\",\"e\":true},\"m\":{\"v\":\"#202020\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Cormorant Garamond\",\"fontSize\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"64px\",\"e\":true},\"t\":{\"v\":\"64px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\",\"e\":true},\"m\":{\"v\":\"#202020\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"91px\"},\"m\":{\"v\":\"91px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\",\"e\":true}},\"originalWidth\":\"91px\",\"originalHeight\":\"1px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-590px\",\"e\":true},\"n\":{\"v\":\"-380px\",\"e\":true},\"t\":{\"v\":\"-238px\",\"e\":true},\"m\":{\"v\":\"-105px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"-192px\",\"e\":true},\"m\":{\"v\":\"-139px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":200,\"startRelative\":200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":200,\"startRelative\":200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#000000\",\"borderColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.4.0\"},\"5\":{\"text\":\"Image 4\",\"alias\":\"Image 4\",\"uid\":5,\"media\":{\"imageUrl\":\"https:\\/\\/www.thirsklodgebarnsstaging.partridgecreative.co.uk\\/wp-content\\/uploads\\/revslider\\/home-slider-image-31.png\",\"imageId\":278},\"size\":{\"width\":{\"d\":{\"v\":\"739px\",\"e\":true},\"n\":{\"v\":\"449px\",\"e\":true},\"t\":{\"v\":\"449px\",\"e\":true},\"m\":{\"v\":\"363px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"911px\",\"e\":true},\"n\":{\"v\":\"553px\",\"e\":true},\"t\":{\"v\":\"553px\",\"e\":true},\"m\":{\"v\":\"447px\",\"e\":true}},\"originalWidth\":739,\"originalHeight\":911,\"aspectRatio\":{\"d\":{\"v\":0.81119648737651},\"n\":{\"v\":0.81119648737651},\"t\":{\"v\":0.81119648737651},\"m\":{\"v\":0.81119648737651}}},\"position\":{\"x\":{\"d\":{\"v\":\"365px\",\"e\":true},\"n\":{\"v\":\"305px\",\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-76px\",\"e\":true},\"n\":{\"v\":\"-57px\",\"e\":true},\"t\":{\"v\":\"182px\",\"e\":true},\"m\":{\"v\":\"182px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":800},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":1000,\"start\":800,\"startRelative\":800},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\",\"e\":true},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"image\",\"version\":\"6.4.0\"},\"8\":{\"text\":\"Image 6\",\"alias\":\"Image 6\",\"uid\":8,\"media\":{\"imageUrl\":\"https:\\/\\/www.thirsklodgebarnsstaging.partridgecreative.co.uk\\/wp-content\\/uploads\\/revslider\\/home-slider-image-21.png\",\"imageId\":279},\"size\":{\"width\":{\"d\":{\"v\":\"605px\",\"e\":true},\"n\":{\"v\":\"373px\",\"e\":true},\"t\":{\"v\":\"373px\"},\"m\":{\"v\":\"318px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"894px\",\"e\":true},\"n\":{\"v\":\"517px\",\"e\":true},\"t\":{\"v\":\"517px\"},\"m\":{\"v\":\"441px\",\"e\":true}},\"originalWidth\":605,\"originalHeight\":894,\"aspectRatio\":{\"d\":{\"v\":0.67673378076063},\"n\":{\"v\":0.67673378076063},\"t\":{\"v\":0.67673378076063},\"m\":{\"v\":0.67673378076063}}},\"position\":{\"x\":{\"d\":{\"v\":\"654px\",\"e\":true},\"n\":{\"v\":\"511px\",\"e\":true},\"t\":{\"v\":\"240px\",\"e\":true},\"m\":{\"v\":\"227px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"v\":\"-5px\",\"e\":true},\"t\":{\"v\":\"302px\",\"e\":true},\"m\":{\"v\":\"332px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":600},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"70px\"},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"y\":{\"d\":{\"v\":\"70px\"},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":900,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":900,\"start\":600,\"startRelative\":600},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7500,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"[button target=\\\"_self\\\" hover_type=\\\"default\\\" text=\\\"READ MORE\\\" link=\\\"#\\\" color=\\\"#121212\\\" hover_color=\\\"#ffffff\\\" hover_background_color=\\\"#d79d59\\\" hover_border_color=\\\"#d79d59\\\" border_color=\\\"#b2b2b2\\\" background_color=\\\"rgba(18,18,18,0)\\\"]\",\"alias\":\"[button target=\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"951px\",\"e\":true},\"n\":{\"v\":\"951px\",\"e\":true},\"t\":{\"v\":\"951px\"},\"m\":{\"v\":\"951px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"951px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-160px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"193px\",\"e\":true},\"m\":{\"v\":\"321px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"219px\",\"e\":true},\"n\":{\"v\":\"219px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"63px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":9,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":9,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\",\"e\":true},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\",\"e\":true},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"7\":{\"text\":\"Image 5\",\"alias\":\"Image 5\",\"uid\":7,\"media\":{\"imageUrl\":\"https:\\/\\/www.thirsklodgebarnsstaging.partridgecreative.co.uk\\/wp-content\\/uploads\\/revslider\\/home-slider-image-11.png\",\"imageId\":280},\"size\":{\"width\":{\"d\":{\"v\":\"839px\",\"e\":true},\"n\":{\"v\":\"543px\",\"e\":true},\"t\":{\"v\":\"543px\"},\"m\":{\"v\":\"447px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"900px\",\"e\":true},\"n\":{\"v\":\"583px\",\"e\":true},\"t\":{\"v\":\"583px\"},\"m\":{\"v\":\"480px\",\"e\":true}},\"originalWidth\":839,\"originalHeight\":900,\"aspectRatio\":{\"d\":{\"v\":0.93222222222222},\"n\":{\"v\":0.93222222222222},\"t\":{\"v\":0.93222222222222},\"m\":{\"v\":0.93222222222222}}},\"position\":{\"x\":{\"d\":{\"v\":\"319px\",\"e\":true},\"n\":{\"v\":\"319px\",\"e\":true},\"t\":{\"v\":\"48px\",\"e\":true},\"m\":{\"v\":\"48px\",\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"v\":\"39px\",\"e\":true},\"t\":{\"v\":\"346px\",\"e\":true},\"m\":{\"v\":\"346px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":10,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":10,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"70px\"},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"y\":{\"d\":{\"v\":\"70px\"},\"n\":{\"v\":\"70px\"},\"t\":{\"v\":\"70px\"},\"m\":{\"v\":\"70px\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":900,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":900,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7700,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"autolinebreak\":false,\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"visibility\":{\"m\":false},\"type\":\"image\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta. Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"575px\",\"e\":true},\"n\":{\"v\":\"575px\",\"e\":true},\"t\":{\"v\":\"575px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"91px\"},\"m\":{\"v\":\"121px\",\"e\":true}},\"originalWidth\":\"575px\",\"originalHeight\":\"91px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-349px\",\"e\":true},\"n\":{\"v\":\"-139px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"7px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"106px\",\"e\":true},\"n\":{\"v\":\"106px\",\"e\":true},\"t\":{\"v\":\"-108px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":11,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":11,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\"},\"m\":{\"v\":\"#202020\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Lato\",\"fontStyle\":true,\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"19px\",\"e\":true},\"t\":{\"v\":\"19px\"},\"m\":{\"v\":\"19px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\"},\"m\":{\"v\":\"#202020\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"hor_lines\":[\"88px\"],\"version\":\"6.4.0\"}'),(2,1,2,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.thirsklodgebarnsstaging.partridgecreative.co.uk\\/wp-content\\/uploads\\/revslider\\/home-slider-image-11.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"The Natural Food & Beverages\",\"alias\":\"The Natural Food & B...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"705px\",\"e\":true},\"n\":{\"v\":\"705px\",\"e\":true},\"t\":{\"v\":\"705px\",\"e\":true},\"m\":{\"v\":\"334px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"79px\",\"e\":true}},\"originalWidth\":\"705px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-296px\",\"e\":true},\"n\":{\"v\":\"-81px\",\"e\":true},\"t\":{\"v\":\"62px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-100px\",\"e\":true},\"t\":{\"v\":\"-314px\",\"e\":true},\"m\":{\"v\":\"-214px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\",\"e\":true},\"m\":{\"v\":\"#202020\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Cormorant Garamond\",\"fontSize\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"64px\",\"e\":true},\"t\":{\"v\":\"64px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\",\"e\":true},\"m\":{\"v\":\"#202020\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"91px\"},\"m\":{\"v\":\"91px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\",\"e\":true}},\"originalWidth\":\"91px\",\"originalHeight\":\"1px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-590px\",\"e\":true},\"n\":{\"v\":\"-380px\",\"e\":true},\"t\":{\"v\":\"-238px\",\"e\":true},\"m\":{\"v\":\"-105px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"-192px\",\"e\":true},\"m\":{\"v\":\"-139px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":200,\"startRelative\":200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":200,\"startRelative\":200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#000000\",\"borderColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"[button target=\\\"_self\\\" hover_type=\\\"default\\\" text=\\\"READ MORE\\\" link=\\\"#\\\" color=\\\"#121212\\\" hover_color=\\\"#ffffff\\\" hover_background_color=\\\"#d79d59\\\" hover_border_color=\\\"#d79d59\\\" border_color=\\\"#b2b2b2\\\" background_color=\\\"rgba(18,18,18,0)\\\"]\",\"alias\":\"[button target=\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"951px\",\"e\":true},\"n\":{\"v\":\"951px\",\"e\":true},\"t\":{\"v\":\"951px\"},\"m\":{\"v\":\"951px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"951px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-160px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"193px\",\"e\":true},\"m\":{\"v\":\"321px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"219px\",\"e\":true},\"n\":{\"v\":\"219px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"63px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\",\"e\":true},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\",\"e\":true},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta. Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"575px\",\"e\":true},\"n\":{\"v\":\"575px\",\"e\":true},\"t\":{\"v\":\"575px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"91px\"},\"m\":{\"v\":\"121px\",\"e\":true}},\"originalWidth\":\"575px\",\"originalHeight\":\"91px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-349px\",\"e\":true},\"n\":{\"v\":\"-139px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"7px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"106px\",\"e\":true},\"n\":{\"v\":\"106px\",\"e\":true},\"t\":{\"v\":\"-108px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\"},\"m\":{\"v\":\"#202020\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Lato\",\"fontStyle\":true,\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"19px\",\"e\":true},\"t\":{\"v\":\"19px\"},\"m\":{\"v\":\"19px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\"},\"m\":{\"v\":\"#202020\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}'),(3,1,3,'{\"title\":\"Slide\",\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.thirsklodgebarnsstaging.partridgecreative.co.uk\\/wp-content\\/uploads\\/revslider\\/home-slider-image-21.jpg\",\"video\":{\"args\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"argsVimeo\":\"title=0&byline=0&portrait=0&api=1\",\"volume\":\"100\"}},\"thumb\":{\"dimension\":\"slider\"},\"timeline\":{\"slots\":[\"default\"],\"duration\":[600]},\"panzoom\":{\"ease\":\"none\"},\"version\":\"6.4.0\"}','{\"1\":{\"text\":\"The Natural Food & Beverages\",\"alias\":\"The Natural Food & B...\",\"uid\":1,\"size\":{\"width\":{\"d\":{\"v\":\"705px\",\"e\":true},\"n\":{\"v\":\"705px\",\"e\":true},\"t\":{\"v\":\"705px\",\"e\":true},\"m\":{\"v\":\"334px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"79px\",\"e\":true}},\"originalWidth\":\"705px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-296px\",\"e\":true},\"n\":{\"v\":\"-81px\",\"e\":true},\"t\":{\"v\":\"62px\",\"e\":true},\"m\":{\"v\":\"14px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-100px\",\"e\":true},\"n\":{\"v\":\"-100px\",\"e\":true},\"t\":{\"v\":\"-314px\",\"e\":true},\"m\":{\"v\":\"-214px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":5,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":5,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":100},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":100,\"startRelative\":100},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8200,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\",\"e\":true},\"m\":{\"v\":\"#202020\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Cormorant Garamond\",\"fontSize\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"70px\",\"e\":true},\"t\":{\"v\":\"70px\",\"e\":true},\"m\":{\"v\":\"45px\",\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"64px\",\"e\":true},\"t\":{\"v\":\"64px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\",\"e\":true},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\",\"e\":true},\"m\":{\"v\":\"#202020\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"3\":{\"text\":\" \",\"alias\":\"Shape\",\"uid\":3,\"size\":{\"width\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"91px\"},\"m\":{\"v\":\"91px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"1px\",\"e\":true},\"n\":{\"v\":\"1px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"1px\",\"e\":true}},\"originalWidth\":\"91px\",\"originalHeight\":\"1px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-590px\",\"e\":true},\"n\":{\"v\":\"-380px\",\"e\":true},\"t\":{\"v\":\"-238px\",\"e\":true},\"m\":{\"v\":\"-105px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"22px\",\"e\":true},\"n\":{\"v\":\"22px\",\"e\":true},\"t\":{\"v\":\"-192px\",\"e\":true},\"m\":{\"v\":\"-139px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":6,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":6,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":200},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":200,\"startRelative\":200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":200,\"startRelative\":200},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8100,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"#000000\",\"borderColor\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderStyle\":{\"d\":{\"v\":\"solid\"},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}}}},\"hover\":{\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\"},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"runtime\":{\"internalClass\":\"tp-shape tp-shapewrapper\"},\"type\":\"shape\",\"version\":\"6.4.0\"},\"9\":{\"text\":\"[button target=\\\"_self\\\" hover_type=\\\"default\\\" text=\\\"READ MORE\\\" link=\\\"#\\\" color=\\\"#121212\\\" hover_color=\\\"#ffffff\\\" hover_background_color=\\\"#d79d59\\\" hover_border_color=\\\"#d79d59\\\" border_color=\\\"#b2b2b2\\\" background_color=\\\"rgba(18,18,18,0)\\\"]\",\"alias\":\"[button target=\",\"uid\":9,\"size\":{\"width\":{\"d\":{\"v\":\"951px\",\"e\":true},\"n\":{\"v\":\"951px\",\"e\":true},\"t\":{\"v\":\"951px\"},\"m\":{\"v\":\"951px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"originalWidth\":\"951px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-160px\",\"e\":true},\"n\":{\"v\":\"50px\",\"e\":true},\"t\":{\"v\":\"193px\",\"e\":true},\"m\":{\"v\":\"321px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"219px\",\"e\":true},\"n\":{\"v\":\"219px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"63px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":7,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":7,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":400},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":400,\"startRelative\":400},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":7900,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\",\"e\":true},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Open Sans\",\"fontSize\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"fontWeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"22\",\"e\":true},\"n\":{\"v\":\"22\",\"e\":true},\"t\":{\"v\":\"22\"},\"m\":{\"v\":\"22\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#000000\",\"e\":true},\"n\":{\"v\":\"#000000\",\"e\":true},\"t\":{\"v\":\"#000000\"},\"m\":{\"v\":\"#000000\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"},\"4\":{\"text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam condimentum, neque ac ultrices porta. Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"alias\":\"Lorem ipsum dolor si...\",\"uid\":4,\"size\":{\"width\":{\"d\":{\"v\":\"575px\",\"e\":true},\"n\":{\"v\":\"575px\",\"e\":true},\"t\":{\"v\":\"575px\"},\"m\":{\"v\":\"320px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"91px\",\"e\":true},\"n\":{\"v\":\"91px\",\"e\":true},\"t\":{\"v\":\"91px\"},\"m\":{\"v\":\"121px\",\"e\":true}},\"originalWidth\":\"575px\",\"originalHeight\":\"91px\"},\"position\":{\"x\":{\"d\":{\"v\":\"-349px\",\"e\":true},\"n\":{\"v\":\"-139px\",\"e\":true},\"t\":{\"v\":\"6px\",\"e\":true},\"m\":{\"v\":\"7px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"106px\",\"e\":true},\"n\":{\"v\":\"106px\",\"e\":true},\"t\":{\"v\":\"-108px\",\"e\":true},\"m\":{\"v\":\"-50px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\",\"e\":true},\"t\":{\"v\":\"middle\"},\"m\":{\"v\":\"middle\",\"e\":true}},\"zIndex\":8,\"position\":\"relative\"},\"attributes\":{\"tabIndex\":\"\"},\"behavior\":{\"autoResponsive\":false,\"intelligentInherit\":false,\"responsiveChilds\":false,\"baseAlign\":\"slide\",\"responsiveOffset\":false},\"group\":{\"groupOrder\":8,\"columnbreakat\":\"mobile\"},\"timeline\":{\"frameOrder\":[{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"frames\":{\"frame_0\":{\"alias\":\"Anim From\",\"transform\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"50px\"},\"m\":{\"v\":\"50px\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"0\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_1\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"y\":{\"d\":{\"v\":0},\"n\":{\"v\":0},\"t\":{\"v\":0},\"m\":{\"v\":0}},\"z\":0,\"scaleX\":\"1\",\"scaleY\":\"1\",\"opacity\":\"1\",\"rotationX\":0,\"rotationY\":0,\"rotationZ\":0,\"skewX\":\"0\",\"skewY\":\"0\",\"transformPerspective\":\"600\"},\"timeline\":{\"ease\":\"power2.out\",\"speed\":700,\"start\":300,\"startRelative\":300},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}},\"frame_999\":{\"alias\":\"Anim To\",\"transform\":{\"x\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"y\":{\"d\":{\"v\":\"inherit\"},\"n\":{\"v\":\"inherit\"},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\"}},\"z\":\"inherit\",\"scaleX\":\"inherit\",\"scaleY\":\"inherit\",\"opacity\":\"0\",\"rotationX\":\"inherit\",\"rotationY\":\"inherit\",\"rotationZ\":\"inherit\",\"skewX\":\"inherit\",\"skewY\":\"inherit\",\"transformPerspective\":\"600\"},\"color\":{\"color\":\"transparent\"},\"timeline\":{\"ease\":\"power3.inOut\",\"start\":9000,\"startRelative\":8000,\"endWithSlide\":true},\"chars\":{\"delay\":\"10\"},\"words\":{\"delay\":\"10\"},\"lines\":{\"delay\":\"10\"}}},\"loop\":{\"yoyo_move\":true,\"speed\":4000}},\"idle\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\"},\"m\":{\"v\":\"#202020\",\"e\":true}},\"margin\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"padding\":{\"d\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"n\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true},\"t\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"m\":{\"v\":[\"0\",\"0\",\"0\",\"0\"],\"e\":true}},\"fontFamily\":\"Lato\",\"fontStyle\":true,\"fontSize\":{\"d\":{\"v\":\"19px\",\"e\":true},\"n\":{\"v\":\"19px\",\"e\":true},\"t\":{\"v\":\"19px\"},\"m\":{\"v\":\"19px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\",\"e\":true},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\",\"e\":true}},\"letterSpacing\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"30px\",\"e\":true},\"n\":{\"v\":\"30px\",\"e\":true},\"t\":{\"v\":\"30px\"},\"m\":{\"v\":\"30px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"inherit\",\"e\":true},\"n\":{\"v\":\"inherit\",\"e\":true},\"t\":{\"v\":\"inherit\"},\"m\":{\"v\":\"inherit\",\"e\":true}},\"backgroundColor\":\"transparent\",\"borderRadius\":{\"v\":[\"0\",\"0\",\"0\",\"0\"]},\"borderWidth\":[\"0\",\"0\",\"0\",\"0\"],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\",\"e\":true},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\",\"e\":true}},\"svg\":{\"color\":{\"d\":{\"v\":\"#202020\",\"e\":true},\"n\":{\"v\":\"#202020\",\"e\":true},\"t\":{\"v\":\"#202020\"},\"m\":{\"v\":\"#202020\",\"e\":true}}}},\"hover\":{\"color\":\"#000000\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"u\":\"px\"},\"borderWidth\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"originX\":50,\"originY\":50,\"speed\":\"0\",\"ease\":\"none\",\"svg\":{\"color\":\"#000000\"}},\"actions\":{\"animationoverwrite\":\"wait\",\"triggerMemory\":\"keep\"},\"type\":\"text\",\"version\":\"6.4.0\"}}','{\"0\":\"\",\"version\":\"6.4.0\"}');
/*!40000 ALTER TABLE `wpgb_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `wpgb_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_slides_bkp`
--

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

--
-- Table structure for table `wpgb_revslider_static_slides`
--

DROP TABLE IF EXISTS `wpgb_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_static_slides`
--

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

--
-- Table structure for table `wpgb_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `wpgb_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `layers` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `wpgb_sbi_instagram_feed_locator`
--

DROP TABLE IF EXISTS `wpgb_sbi_instagram_feed_locator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_sbi_instagram_feed_locator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_id` bigint(20) unsigned NOT NULL,
  `html_location` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_sbi_instagram_feed_locator`
--

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

--
-- Table structure for table `wpgb_sbi_instagram_feeds_posts`
--

DROP TABLE IF EXISTS `wpgb_sbi_instagram_feeds_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_sbi_instagram_feeds_posts` (
  `record_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id` int(11) unsigned NOT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `feed_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `hashtag` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`record_id`),
  KEY `hashtag` (`hashtag`(100)),
  KEY `feed_id` (`feed_id`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_sbi_instagram_feeds_posts`
--

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

--
-- Table structure for table `wpgb_sbi_instagram_posts`
--

DROP TABLE IF EXISTS `wpgb_sbi_instagram_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_sbi_instagram_posts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `media_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sizes` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT 0.00,
  `images_done` tinyint(1) NOT NULL DEFAULT 0,
  `last_requested` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_sbi_instagram_posts`
--

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

--
-- Table structure for table `wpgb_term_relationships`
--

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

--
-- Dumping data for table `wpgb_term_relationships`
--

LOCK TABLES `wpgb_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpgb_term_relationships` DISABLE KEYS */;
INSERT INTO `wpgb_term_relationships` VALUES (1,1,0),(14,2,0),(15,2,0),(16,2,0),(18,3,0),(19,3,0),(20,3,0),(21,3,0),(274,4,0),(275,4,0),(276,1,0),(289,5,0),(376,4,0),(383,1,0),(386,1,0),(388,1,0),(390,1,0),(408,4,0),(417,4,0),(442,4,0),(443,4,0),(444,4,0),(445,4,0),(454,4,0),(456,4,0),(462,4,0),(463,4,0),(848,5,0),(852,5,0);
/*!40000 ALTER TABLE `wpgb_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_term_taxonomy`
--

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

--
-- Dumping data for table `wpgb_term_taxonomy`
--

LOCK TABLES `wpgb_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpgb_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpgb_term_taxonomy` VALUES (1,1,'category','',0,6),(2,2,'nav_menu','',0,3),(3,3,'nav_menu','',0,4),(4,4,'nav_menu','',0,13),(5,5,'slides_category','',0,3);
/*!40000 ALTER TABLE `wpgb_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_termmeta`
--

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

--
-- Dumping data for table `wpgb_termmeta`
--

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

--
-- Table structure for table `wpgb_terms`
--

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

--
-- Dumping data for table `wpgb_terms`
--

LOCK TABLES `wpgb_terms` WRITE;
/*!40000 ALTER TABLE `wpgb_terms` DISABLE KEYS */;
INSERT INTO `wpgb_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Primary menu','primary-menu',0),(3,'Secondary menu','secondary-menu',0),(4,'Main Menu','main-menu',0),(5,'home','home',0);
/*!40000 ALTER TABLE `wpgb_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_usermeta`
--

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

--
-- Dumping data for table `wpgb_usermeta`
--

LOCK TABLES `wpgb_usermeta` WRITE;
/*!40000 ALTER TABLE `wpgb_usermeta` DISABLE KEYS */;
INSERT INTO `wpgb_usermeta` VALUES (1,1,'nickname','jydk6'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpgb_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpgb_user_level','10'),(14,1,'dismissed_wp_pointers','vc_pointers_backend_editor,plugin_editor_notice,text_widget_custom_html'),(15,1,'show_welcome_panel','1'),(17,1,'wpgb_dashboard_quick_press_last_post_id','975'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"87.116.180.0\";}'),(19,1,'wpgb_user-settings','libraryContent=browse&editor=tinymce&edit_element_vcUIPanelWidth=1095&edit_element_vcUIPanelLeft=629px&edit_element_vcUIPanelTop=73px'),(20,1,'wpgb_user-settings-time','1620901196'),(21,1,'nav_menu_recently_edited','4'),(22,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\";}'),(23,1,'metaboxhidden_nav-menus','a:10:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:28:\"add-post-type-portfolio_page\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:22:\"add-portfolio_category\";i:5;s:17:\"add-portfolio_tag\";i:6;s:25:\"add-testimonials_category\";i:7;s:19:\"add-slides_category\";i:8;s:22:\"add-carousels_category\";i:9;s:28:\"add-masonry_gallery_category\";}'),(24,1,'sbi_seen_welcome_5_12','true'),(25,1,'session_tokens','a:5:{s:64:\"3f6926e16f05617802c4ba0327f594ed09cd8aa2003f4349ca28c913df949b32\";a:4:{s:10:\"expiration\";i:1620971108;s:2:\"ip\";s:13:\"51.194.167.93\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36\";s:5:\"login\";i:1620798308;}s:64:\"acc7df40d0c5faee260ea8a5a02842c04d56cc8e15b45b3f6420e77979c10bd3\";a:4:{s:10:\"expiration\";i:1620991577;s:2:\"ip\";s:14:\"87.116.180.142\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36\";s:5:\"login\";i:1620818777;}s:64:\"3780526d90a8a920369c3654c6b3fe65de4d47d8298d63e0db7391b153cd675b\";a:4:{s:10:\"expiration\";i:1621073643;s:2:\"ip\";s:13:\"86.136.232.87\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36\";s:5:\"login\";i:1620900843;}s:64:\"24100d2a0d5919123541736f3b837564a5636e79e47b173a5413fa7d0d37a8a1\";a:4:{s:10:\"expiration\";i:1621073646;s:2:\"ip\";s:13:\"86.136.232.87\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36\";s:5:\"login\";i:1620900846;}s:64:\"c20760db0ce5dd5d2a1535c82c99b5cb2d55b94b916ee2b97c5b07b04bb0a5b0\";a:4:{s:10:\"expiration\";i:1621090649;s:2:\"ip\";s:14:\"87.116.180.142\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36\";s:5:\"login\";i:1620917849;}}'),(26,1,'wpgb_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:387:\"<p>You can speed up your site and get insight into your internal linking structure by letting us perform a few optimizations to the way SEO data is stored. </p><p>We estimate this will take less than a minute.</p><a class=\"button\" href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-admin/admin.php?page=wpseo_tools&start-indexation=true\">Start SEO data optimization</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:5:\"jydk6\";s:9:\"user_pass\";s:34:\"$P$BKIz5notDewEsGElXlJwx0EGHAceit/\";s:13:\"user_nicename\";s:5:\"jydk6\";s:10:\"user_email\";s:27:\"cat@partridgecreative.co.uk\";s:8:\"user_url\";s:59:\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk\";s:15:\"user_registered\";s:19:\"2021-03-18 21:19:53\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"jydk6\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:17:\"wpgb_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:64:{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:29:\"manage_instagram_feed_options\";b:1;s:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:372:\"<p>We see that you enabled automatic updates for WordPress. We recommend that you do this for Yoast SEO as well. This way we can guarantee that WordPress and Yoast SEO will continue to run smoothly together. <a href=\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-admin/plugins.php\">Go to your plugins overview to enable auto-updates for Yoast SEO.</a></p>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:17:\"wpseo-auto-update\";s:4:\"user\";r:7;s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(27,1,'_yoast_wpseo_profile_updated','1620765863');
/*!40000 ALTER TABLE `wpgb_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_users`
--

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

--
-- Dumping data for table `wpgb_users`
--

LOCK TABLES `wpgb_users` WRITE;
/*!40000 ALTER TABLE `wpgb_users` DISABLE KEYS */;
INSERT INTO `wpgb_users` VALUES (1,'jydk6','$P$BKIz5notDewEsGElXlJwx0EGHAceit/','jydk6','cat@partridgecreative.co.uk','https://www.thirsklodgebarnsstaging.partridgecreative.co.uk','2021-03-18 21:19:53','',0,'jydk6');
/*!40000 ALTER TABLE `wpgb_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_wpsbc_calendar_meta`
--

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

--
-- Dumping data for table `wpgb_wpsbc_calendar_meta`
--

LOCK TABLES `wpgb_wpsbc_calendar_meta` WRITE;
/*!40000 ALTER TABLE `wpgb_wpsbc_calendar_meta` DISABLE KEYS */;
INSERT INTO `wpgb_wpsbc_calendar_meta` VALUES (1,1,'calendar_name_translation_en',''),(35,1,'calendar_link_type','internal');
/*!40000 ALTER TABLE `wpgb_wpsbc_calendar_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_wpsbc_calendars`
--

DROP TABLE IF EXISTS `wpgb_wpsbc_calendars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_wpsbc_calendars` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `date_created` datetime NOT NULL,
  `date_modified` datetime NOT NULL,
  `status` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `ical_hash` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_wpsbc_calendars`
--

LOCK TABLES `wpgb_wpsbc_calendars` WRITE;
/*!40000 ALTER TABLE `wpgb_wpsbc_calendars` DISABLE KEYS */;
INSERT INTO `wpgb_wpsbc_calendars` VALUES (1,'Availability','2021-04-08 17:10:59','2021-05-11 15:33:00','active','GdtTZjja8rIH1crzLod606f392355a63');
/*!40000 ALTER TABLE `wpgb_wpsbc_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_wpsbc_event_meta`
--

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

--
-- Dumping data for table `wpgb_wpsbc_event_meta`
--

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

--
-- Table structure for table `wpgb_wpsbc_events`
--

DROP TABLE IF EXISTS `wpgb_wpsbc_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_wpsbc_events` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `date_year` smallint(4) NOT NULL,
  `date_month` smallint(2) NOT NULL,
  `date_day` smallint(2) NOT NULL,
  `calendar_id` bigint(10) NOT NULL,
  `legend_item_id` bigint(10) NOT NULL,
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tooltip` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=323 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_wpsbc_events`
--

LOCK TABLES `wpgb_wpsbc_events` WRITE;
/*!40000 ALTER TABLE `wpgb_wpsbc_events` DISABLE KEYS */;
INSERT INTO `wpgb_wpsbc_events` VALUES (1,2021,4,1,1,2,'',''),(2,2021,4,2,1,2,'',''),(3,2021,4,3,1,2,'',''),(4,2021,5,1,1,2,'',''),(5,2021,5,4,1,2,'',''),(6,2021,9,4,1,2,'',''),(7,2021,9,11,1,2,'',''),(8,2021,9,18,1,2,'',''),(9,2021,8,1,1,3,'OPEN DAY:: from 10am – 4pm',''),(10,2021,8,2,1,2,'',''),(11,2021,8,3,1,2,'',''),(12,2021,8,4,1,2,'',''),(13,2021,8,5,1,2,'',''),(14,2021,8,6,1,2,'',''),(15,2021,8,7,1,2,'',''),(16,2021,4,4,1,2,'',''),(17,2021,4,5,1,2,'',''),(18,2021,4,6,1,2,'',''),(19,2021,4,7,1,2,'',''),(20,2021,4,8,1,2,'',''),(21,2021,4,9,1,2,'',''),(22,2021,4,10,1,2,'',''),(23,2021,4,11,1,2,'',''),(24,2021,4,12,1,2,'',''),(25,2021,4,13,1,2,'',''),(26,2021,4,14,1,2,'',''),(27,2021,4,15,1,2,'',''),(28,2021,4,16,1,2,'',''),(29,2021,4,17,1,2,'',''),(30,2021,4,18,1,2,'',''),(31,2021,4,19,1,2,'',''),(32,2021,4,20,1,2,'',''),(33,2021,4,21,1,2,'',''),(34,2021,4,22,1,2,'',''),(35,2021,4,23,1,2,'',''),(36,2021,4,24,1,2,'',''),(37,2021,4,25,1,2,'',''),(38,2021,4,26,1,2,'',''),(39,2021,4,27,1,2,'',''),(40,2021,4,28,1,2,'',''),(41,2021,4,29,1,2,'',''),(42,2021,4,30,1,2,'',''),(43,2021,5,2,1,2,'',''),(44,2021,5,3,1,2,'',''),(45,2021,5,5,1,2,'',''),(46,2021,5,6,1,2,'',''),(47,2021,5,7,1,2,'',''),(48,2021,5,8,1,2,'',''),(49,2021,5,9,1,2,'',''),(50,2021,5,10,1,2,'',''),(51,2021,5,11,1,2,'',''),(52,2021,5,12,1,2,'',''),(53,2021,5,13,1,2,'',''),(54,2021,5,14,1,2,'',''),(55,2021,5,15,1,2,'',''),(56,2021,5,16,1,2,'',''),(57,2021,5,17,1,2,'',''),(58,2021,5,18,1,2,'',''),(59,2021,5,19,1,2,'',''),(60,2021,5,20,1,2,'',''),(61,2021,5,21,1,2,'',''),(62,2021,5,22,1,2,'',''),(63,2021,5,23,1,2,'',''),(64,2021,5,24,1,2,'',''),(65,2021,5,25,1,2,'',''),(66,2021,5,26,1,2,'',''),(67,2021,5,27,1,2,'',''),(68,2021,5,28,1,2,'',''),(69,2021,5,29,1,2,'',''),(70,2021,5,30,1,2,'',''),(71,2021,5,31,1,2,'',''),(72,2021,6,1,1,2,'',''),(73,2021,6,2,1,2,'',''),(74,2021,6,3,1,2,'',''),(75,2021,6,4,1,2,'',''),(76,2021,6,5,1,2,'',''),(77,2021,6,6,1,2,'',''),(78,2021,6,7,1,2,'',''),(79,2021,6,8,1,2,'',''),(80,2021,6,9,1,2,'',''),(81,2021,6,10,1,2,'',''),(82,2021,6,11,1,2,'',''),(83,2021,6,12,1,2,'',''),(84,2021,6,13,1,2,'',''),(85,2021,6,14,1,2,'',''),(86,2021,6,15,1,2,'',''),(87,2021,6,16,1,2,'',''),(88,2021,6,17,1,2,'',''),(89,2021,6,18,1,2,'',''),(90,2021,6,19,1,2,'',''),(91,2021,6,20,1,2,'',''),(92,2021,6,21,1,2,'',''),(93,2021,6,22,1,2,'',''),(94,2021,6,23,1,2,'',''),(95,2021,6,24,1,2,'',''),(96,2021,6,25,1,2,'',''),(97,2021,6,26,1,2,'',''),(98,2021,6,27,1,2,'',''),(99,2021,6,28,1,2,'',''),(100,2021,6,29,1,2,'',''),(101,2021,6,30,1,2,'',''),(102,2021,7,1,1,2,'',''),(103,2021,7,2,1,2,'',''),(104,2021,7,3,1,2,'',''),(105,2021,7,4,1,2,'',''),(106,2021,7,5,1,2,'',''),(107,2021,7,6,1,2,'',''),(108,2021,7,7,1,2,'',''),(109,2021,7,8,1,2,'',''),(110,2021,7,9,1,2,'',''),(111,2021,7,10,1,2,'',''),(112,2021,7,11,1,2,'',''),(113,2021,7,12,1,2,'',''),(114,2021,7,13,1,2,'',''),(115,2021,7,14,1,2,'',''),(116,2021,7,15,1,2,'',''),(117,2021,7,16,1,2,'',''),(118,2021,7,17,1,2,'',''),(119,2021,7,18,1,2,'',''),(120,2021,7,19,1,2,'',''),(121,2021,7,20,1,2,'',''),(122,2021,7,21,1,2,'',''),(123,2021,7,22,1,2,'',''),(124,2021,7,23,1,2,'',''),(125,2021,7,24,1,2,'',''),(126,2021,7,25,1,2,'',''),(127,2021,7,26,1,2,'',''),(128,2021,7,27,1,2,'',''),(129,2021,7,28,1,2,'',''),(130,2021,7,29,1,2,'',''),(131,2021,7,30,1,2,'',''),(132,2021,7,31,1,2,'',''),(133,2021,8,8,1,3,'Wedding Fair: from 10am – 4pm',''),(134,2021,8,13,1,2,'',''),(135,2021,8,14,1,2,'',''),(136,2021,8,15,1,2,'',''),(137,2021,8,19,1,1,'',''),(138,2021,8,20,1,2,'',''),(139,2021,8,21,1,2,'',''),(140,2021,8,22,1,2,'',''),(141,2021,8,26,1,2,'',''),(142,2021,8,27,1,2,'',''),(143,2021,8,28,1,2,'',''),(144,2021,8,29,1,2,'',''),(145,2021,8,30,1,3,'',''),(146,2021,9,3,1,2,'',''),(147,2021,9,10,1,2,'',''),(148,2021,9,17,1,2,'',''),(149,2021,9,24,1,2,'',''),(150,2021,9,25,1,2,'',''),(151,2021,10,1,1,2,'',''),(152,2021,10,2,1,2,'',''),(153,2021,10,8,1,2,'',''),(154,2021,10,9,1,2,'',''),(155,2021,10,15,1,2,'',''),(156,2021,10,16,1,2,'',''),(157,2021,10,22,1,2,'',''),(158,2021,10,23,1,2,'',''),(159,2021,10,29,1,2,'',''),(160,2021,10,30,1,2,'',''),(161,2021,11,5,1,2,'',''),(162,2021,11,6,1,2,'',''),(163,2021,11,12,1,2,'',''),(164,2021,11,13,1,2,'',''),(165,2021,11,19,1,2,'',''),(166,2021,11,20,1,2,'',''),(167,2021,11,26,1,2,'',''),(168,2021,11,27,1,2,'',''),(169,2021,12,3,1,2,'',''),(170,2021,12,4,1,2,'',''),(171,2021,12,10,1,2,'',''),(172,2021,12,11,1,2,'',''),(173,2021,12,12,1,2,'',''),(174,2021,12,13,1,3,'',''),(175,2021,12,14,1,3,'',''),(176,2021,12,15,1,3,'',''),(177,2021,12,16,1,3,'',''),(178,2021,12,17,1,3,'',''),(179,2021,12,18,1,3,'',''),(180,2021,12,19,1,3,'',''),(181,2021,12,20,1,3,'',''),(182,2021,12,21,1,3,'',''),(183,2021,12,22,1,3,'',''),(184,2021,12,23,1,3,'',''),(185,2021,12,24,1,4,'',''),(186,2021,12,25,1,4,'',''),(187,2021,12,26,1,2,'',''),(188,2021,12,27,1,2,'',''),(189,2021,12,28,1,2,'',''),(190,2021,12,29,1,2,'',''),(191,2021,12,30,1,2,'',''),(192,2021,12,31,1,2,'',''),(193,2021,12,5,1,2,'',''),(194,2022,1,1,1,2,'',''),(195,2022,1,2,1,2,'',''),(196,2022,2,4,1,2,'',''),(197,2022,2,5,1,2,'',''),(198,2022,2,6,1,2,'',''),(199,2022,2,7,1,2,'',''),(200,2022,2,8,1,2,'',''),(201,2022,2,9,1,2,'',''),(202,2022,2,10,1,2,'',''),(203,2022,2,11,1,2,'',''),(204,2022,2,12,1,2,'',''),(205,2022,2,13,1,2,'',''),(206,2022,2,14,1,2,'',''),(207,2022,2,15,1,2,'',''),(208,2022,2,16,1,2,'',''),(209,2022,2,17,1,2,'',''),(210,2022,2,18,1,2,'',''),(211,2022,2,19,1,2,'',''),(212,2022,2,20,1,2,'',''),(213,2022,3,18,1,2,'',''),(214,2022,3,19,1,2,'',''),(215,2022,3,25,1,2,'',''),(216,2022,3,26,1,2,'',''),(217,2022,4,1,1,2,'',''),(218,2022,4,2,1,2,'',''),(219,2022,4,22,1,2,'',''),(220,2022,4,23,1,2,'',''),(221,2022,4,29,1,2,'',''),(222,2022,4,30,1,2,'',''),(223,2022,5,6,1,2,'',''),(224,2022,5,7,1,2,'',''),(225,2022,5,13,1,2,'',''),(226,2022,5,14,1,2,'',''),(227,2022,5,20,1,2,'',''),(228,2022,5,21,1,2,'',''),(229,2022,5,27,1,2,'',''),(230,2022,5,28,1,2,'',''),(231,2022,5,31,1,2,'',''),(232,2022,6,1,1,2,'',''),(233,2022,6,2,1,2,'',''),(234,2022,6,3,1,2,'',''),(235,2022,6,10,1,2,'',''),(236,2022,6,11,1,2,'',''),(237,2022,6,17,1,2,'',''),(238,2022,6,18,1,2,'',''),(239,2022,6,24,1,2,'',''),(240,2022,6,25,1,2,'',''),(241,2022,7,1,1,2,'',''),(242,2022,7,2,1,2,'',''),(243,2022,7,15,1,2,'',''),(244,2022,7,16,1,2,'',''),(245,2022,7,22,1,2,'',''),(246,2022,7,23,1,2,'',''),(247,2022,7,27,1,2,'',''),(248,2022,7,28,1,2,'',''),(249,2022,8,5,1,2,'',''),(250,2022,8,6,1,2,'',''),(251,2022,8,10,1,2,'',''),(252,2022,8,11,1,2,'',''),(253,2022,8,19,1,2,'',''),(254,2022,8,20,1,2,'',''),(255,2022,8,26,1,2,'',''),(256,2022,8,27,1,2,'',''),(257,2022,9,2,1,2,'',''),(258,2022,9,3,1,2,'',''),(259,2022,9,16,1,2,'',''),(260,2022,9,17,1,2,'',''),(261,2022,9,30,1,2,'',''),(262,2022,10,1,1,2,'',''),(263,2022,11,4,1,2,'',''),(264,2022,11,5,1,2,'',''),(265,2022,12,2,1,2,'',''),(266,2022,12,3,1,2,'',''),(267,2022,12,11,1,2,'',''),(268,2022,12,12,1,2,'',''),(269,2022,12,13,1,2,'',''),(270,2022,12,14,1,2,'',''),(271,2022,12,15,1,2,'',''),(272,2022,12,16,1,2,'',''),(273,2022,12,17,1,2,'',''),(274,2022,12,18,1,2,'',''),(275,2022,12,19,1,2,'',''),(276,2022,12,20,1,2,'',''),(277,2022,12,21,1,2,'',''),(278,2022,12,22,1,2,'',''),(279,2022,12,23,1,2,'',''),(280,2022,12,24,1,2,'',''),(281,2022,12,25,1,2,'',''),(282,2022,12,26,1,2,'',''),(283,2022,12,27,1,2,'',''),(284,2022,12,30,1,2,'',''),(285,2022,12,31,1,2,'',''),(286,2023,1,1,1,2,'',''),(287,2023,3,24,1,2,'',''),(288,2023,3,25,1,2,'',''),(289,2023,4,5,1,2,'',''),(290,2023,4,6,1,2,'',''),(291,2023,4,14,1,2,'',''),(292,2023,4,15,1,2,'',''),(293,2023,4,21,1,2,'',''),(294,2023,4,22,1,2,'',''),(295,2023,5,5,1,2,'',''),(296,2023,5,6,1,2,'',''),(297,2023,5,19,1,2,'',''),(298,2023,5,20,1,2,'',''),(299,2023,5,26,1,2,'',''),(300,2023,5,27,1,2,'',''),(301,2023,5,31,1,2,'',''),(302,2023,6,1,1,2,'',''),(303,2023,6,9,1,2,'',''),(304,2023,6,10,1,2,'',''),(305,2023,6,16,1,2,'',''),(306,2023,6,17,1,2,'',''),(307,2023,6,23,1,2,'',''),(308,2023,6,24,1,2,'',''),(309,2023,8,18,1,2,'',''),(310,2023,8,19,1,2,'',''),(311,2022,4,13,1,2,'',''),(312,2022,4,14,1,2,'',''),(313,2022,9,9,1,2,'',''),(314,2022,9,10,1,2,'',''),(315,2021,10,28,1,1,'',''),(316,2021,8,18,1,3,'',''),(317,2021,8,31,1,2,'',''),(318,2021,9,15,1,2,'',''),(319,2021,9,16,1,2,'',''),(320,2021,9,22,1,2,'',''),(321,2021,9,23,1,2,'',''),(322,2021,10,31,1,3,'Sunday Game Lunch','');
/*!40000 ALTER TABLE `wpgb_wpsbc_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_wpsbc_legend_item_meta`
--

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

--
-- Dumping data for table `wpgb_wpsbc_legend_item_meta`
--

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

--
-- Table structure for table `wpgb_wpsbc_legend_items`
--

DROP TABLE IF EXISTS `wpgb_wpsbc_legend_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_wpsbc_legend_items` (
  `id` bigint(10) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `color` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `color_text` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_default` tinyint(1) NOT NULL,
  `is_visible` tinyint(1) NOT NULL,
  `is_bookable` tinyint(1) NOT NULL,
  `calendar_id` bigint(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_wpsbc_legend_items`
--

LOCK TABLES `wpgb_wpsbc_legend_items` WRITE;
/*!40000 ALTER TABLE `wpgb_wpsbc_legend_items` DISABLE KEYS */;
INSERT INTO `wpgb_wpsbc_legend_items` VALUES (1,'single','Available','[\"#f2f2f2\"]','#404d56',1,1,1,1),(2,'single','Booked','[\"#404d56\"]','#ffffff',0,1,0,1),(3,'single','Public Event','[\"#667b8a\",\"#dd3333\"]','#ffffff',0,0,1,1),(4,'single','CLOSED','[\"#e58475\",\"#eaeaea\"]','#ffffff',0,0,1,1);
/*!40000 ALTER TABLE `wpgb_wpsbc_legend_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_yoast_indexable`
--

DROP TABLE IF EXISTS `wpgb_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT 0,
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT 0,
  `is_robots_noindex` tinyint(1) DEFAULT 0,
  `is_robots_nofollow` tinyint(1) DEFAULT 0,
  `is_robots_noarchive` tinyint(1) DEFAULT 0,
  `is_robots_noimageindex` tinyint(1) DEFAULT 0,
  `is_robots_nosnippet` tinyint(1) DEFAULT 0,
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT 0,
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_yoast_indexable`
--

LOCK TABLES `wpgb_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wpgb_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wpgb_yoast_indexable` VALUES (1,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/author/jydk6/','73:3e9ed3471f2ee8e6c1fefd6833d34a04',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/ebdb96a0bf2c24d313eb3328722583ef?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/ebdb96a0bf2c24d313eb3328722583ef?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-05-11 20:38:29','2021-05-13 10:47:36',1,NULL,NULL,NULL,NULL,0,NULL),(2,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/','60:e27ba8f570be3320a8fca4c60fbd8eb9',271,'post','page',1,0,'Thirsk Lodge Barns | Stunning Wedding and Events Venue | Thirsk','Opening in July 2021; Thirsk Lodge barns is a fantastic brand-new wedding venue nestled in the heart of the gorgeous North Yorkshire countryside. Welcoming up to 140 guests for the ceremony and dining, we also have availability for more guests at the evening reception.This stunning exclusive use wedding venue is made up of several barns including the Main Barn, the snug Wheelhouse, the Bar, the Courtyard and the Dining Room. Therefore, you can enjoy a change of scenery as you move between your ceremony, drinks reception, wedding breakfast and then onto the dancing. The barns are all beautifully restored and show off traditional features, and the team have years of experience to help you plan your perfect day.','Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,3,NULL,'2021-05-11 20:38:29','2021-05-13 10:39:19',1,NULL,NULL,NULL,NULL,0,2),(3,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=130','72:3186b924be67d62b764334b105858186',130,'post','page',1,0,NULL,NULL,'About Us','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(4,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/','74:5223d3fb02bfc0f3f2dfc7779562f278',457,'post','page',1,0,'Thirsk Lodge Barns | The Farmhouse Accommodation','On site we have the newly renovated Farmhouse and Laundry Cottage.The Farmhouse sleeps up to 9 adults in four King-sized rooms and one single room. The Master King-sized room has an en-suite bathroom featuring a roll topped bath and large walk in shower. The four remaining bedrooms share two large, modern family bathrooms.Downstairs, guests can enjoy a large, contemporary Kitchen with garden views, as well as a cosy ‘Snug’ with TV and wood burner, and a light, open Drawing Room with wood burner and sofas to sink into.The Laundry Cottage sleeps one couple and boasts modern décor, including a roll topped bath in the bedroom, and an open plan kitchen/living room.The Farmhouse and the Laundry Cottage share a large south facing garden with patio, and are just 10 steps from The Barns.For weddings, you have use of the accommodation the night before and night of your big day.','ACCOMMODATION','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,3,NULL,'2021-05-11 20:38:32','2021-05-13 09:20:00',1,NULL,NULL,NULL,NULL,0,NULL),(5,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=710','72:4f26fc7887d78615ca53eff6456abd11',710,'post','page',1,0,NULL,NULL,'Advert boxes','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-13 09:20:47',1,NULL,NULL,NULL,NULL,0,NULL),(6,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=474','72:c27322c161f9331747a873d6e7f941f0',474,'post','page',1,0,NULL,NULL,'alternating squares','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-13 09:20:59',1,NULL,NULL,NULL,NULL,0,NULL),(7,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/','73:a5cd498d900abd5c6e3df62fb56aecfd',374,'post','page',1,0,'Thirsk Lodge Barns | Availability','Opening in July 2021; Thirsk Lodge barns is a fantastic brand-new wedding venue nestled in the heart of the gorgeous North Yorkshire countryside. Welcoming up to 140 guests for the ceremony and dining, we also have availability for more guests at the evening reception.','AVAILABILITY','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,6,NULL,'2021-05-11 20:38:32','2021-05-13 09:22:47',1,NULL,NULL,NULL,NULL,0,NULL),(8,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=5','70:aacd2c06f9b616c3fdb0a1453cb5ba7c',5,'post','page',1,0,NULL,NULL,'Blocks','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(9,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/blog/','65:dc17199169c7aa91c07769176b5f8cab',8,'post','page',1,0,NULL,NULL,'BLOG','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(10,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/','69:a58768b5ff796de415986bd636d9a173',440,'post','page',1,0,'Thirsk Lodge Barns | Business Venue for Hire','Welcoming everything from small team-building days, to larger talks or conferences, Thirsk Lodge Barns is the new venue for those important business events. The layout of Thirsk Lodge Barns means you can use private break out/discussion rooms, as well as congregate for larger presentations.With the use of projector, PA system, high speed Wi-Fi, and tea and coffee facilities - Thirsk Lodge Barns covers all of your business needs. Our team will set the Barns up for you as to any specific layouts, and help arrange the finer details ahead of your event.We can also organise all of your catering needs including breakfasts for those early morning conferences, buffet lunches, or private dining for smaller intimate work dos.','BUSINESS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,1,NULL,'2021-05-11 20:38:32','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(11,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/','70:c4999bfd3f602a4e14f8a8bd819e9999',437,'post','page',1,0,'Thirsk Lodge Barns | 2021 Christmas Experience','The Ultimate Christmas Experience is coming to Thirsk Lodge Barns. Father Christmas has planned a visit to Thirsk Lodge Barns from the 13th December – 23rd December, so make sure you keep an eye out for our Booking System so you can book your family in for a mulled wine, mince pie and visit with Father Christmas. There are even talks of a donkey making an appearance! We have dates for Wreath Making workshops and a Christmas Market.','CHRISTMAS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,2,NULL,'2021-05-11 20:38:32','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,2),(12,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/','68:02a68dbc6e10ea2006b4eb875cb78f58',164,'post','page',1,0,'Thirsk Lodge Barns | Contact us','Address:Thirsk Lodge Barns,Newsham Road,Thirsk,YO7 4DB EMAIL:enquiries@thirsklodgebarns.com. PHONE:07815 560782','CONTACT','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,NULL,'2021-05-11 20:38:32','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(13,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events/','67:9476a4111cc17df785b45a482b2c1360',413,'post','page',1,0,'Thirsk Lodge Barn | Events Venue, North Yorkshire',NULL,'EVENTS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,'2021-05-11 20:38:32','2021-05-13 09:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(14,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/','76:7e92e7856ec3b9649697a02600af38f1',433,'post','page',1,0,'Thirsk Lodge Barns | What\'s On Events Calendar',NULL,'EVENTS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,8,NULL,'2021-05-11 20:38:32','2021-05-13 10:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(15,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/','72:f7952b59bafbab7f849b11c07d169074',459,'post','page',1,0,NULL,NULL,'FOOD &#038; DRINKS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,1,NULL,'2021-05-11 20:38:32','2021-05-11 19:52:50',1,NULL,NULL,NULL,NULL,0,NULL),(16,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=611','72:c5d6126b6000a05a4ac0f62a74af1686',611,'post','page',1,0,NULL,NULL,'Footer','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(17,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/','68:099d9b039219fa98fa18e7cf43eef237',187,'post','page',1,0,'Thirsk Lodge Barns | Wedding and Events Venue - Gallery','This stunning exclusive use wedding venue is made up of several barns including the Main Barn, the snug Wheelhouse, the Bar, the Courtyard and the Dining Room. Therefore, you can enjoy a change of scenery as you move between your ceremony, drinks reception, wedding breakfast and then onto the dancing. The barns are all beautifully restored and show off traditional features, and the team have years of experience to help you plan your perfect day.On your wedding day, the venue is entirely yours, and you are welcome to come and set up the day before. On the big day - your wedding coordinator will be at hand to help the smooth running of the wedding - taking the pressure off you so that you can focus on relaxing and enjoying your day.This venue offers some fun, unique extras including a wall of fairy lights in the Main Barn, garden games including giant jenga, photo opportunities with a vintage tractor and a firepit in the courtyard for toasting marshmallows and lighting sparklers!There is accommodation on site for up to 11 people including the Laundry Cottage; a gorgeous, private converted cottage for the wedding couple including a roll topped bath in the bedroom and an open plan kitchen/living area.','Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,3,NULL,'2021-05-11 20:38:32','2021-05-13 10:21:24',1,NULL,NULL,NULL,NULL,0,NULL),(18,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=200','72:b68eb50253c4dfa149a157f65921c5e9',200,'post','page',1,0,NULL,NULL,'History','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(19,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=349','72:3dedb8e71462b289872964c6bf9b1090',349,'post','page',1,0,NULL,NULL,'home draft','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(20,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=303','72:d9a93e90618cd5d8667e21437780b7a9',303,'post','page',1,0,NULL,NULL,'Home old','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(21,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=431','72:c32ec4fdd384ed62f29bccaada16a1c0',431,'post','page',1,0,NULL,NULL,'parralax','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:38:32','2021-05-11 19:38:32',1,NULL,NULL,NULL,NULL,0,NULL),(22,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched.jpg','120:f1ece99530a4075ffae8c49ee6cb7ad5',954,'post','attachment',1,271,NULL,NULL,'thirsk-lodge-barns-on-Hitched','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched.jpg',NULL,'954','attachment-image',NULL,NULL,NULL,'954','attachment-image',NULL,NULL,1,NULL,'2021-05-11 20:41:22','2021-05-11 20:41:48',1,NULL,NULL,NULL,NULL,0,NULL),(23,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/','70:657fad6ff90aba5e98d1395e9fead2a2',447,'post','page',1,0,NULL,NULL,'THE BARNS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,'2021-05-11 20:41:48','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(24,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/','69:54d48ce8db788602769edcb465c94f2d',403,'post','page',1,0,'Thirsk Lodge Barns | Weddings - Wedding Venue North Yorkshire','This stunning exclusive use wedding venue is made up of several barns including the Main Barn, the snug Wheelhouse, the Bar, the Courtyard and the Dining Room. Therefore, you can enjoy a change of scenery as you move between your ceremony, drinks reception, wedding breakfast and then onto the dancing. The barns are all beautifully restored and show off traditional features, and the team have years of experience to help you plan your perfect day. On your wedding day, the venue is entirely yours, and you are welcome to come and set up the day before. On the big day - your wedding coordinator will be at hand to help the smooth running of the wedding - taking the pressure off you so that you can focus on relaxing and enjoying your day.','WEDDINGS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6,2,NULL,'2021-05-11 20:41:48','2021-05-13 09:18:32',1,NULL,NULL,NULL,NULL,0,NULL),(25,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg','126:363cec254cd5e39ed4864496091d9cf8',810,'post','attachment',1,271,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-21','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg',NULL,'810','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg','810','attachment-image','{\"width\":800,\"height\":1199,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg\",\"size\":\"full\",\"id\":810,\"alt\":\"\",\"pixels\":959200,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:41:48','2021-05-11 20:41:48',1,NULL,NULL,NULL,NULL,0,NULL),(26,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg','127:55239490aaf1921679f68cfa975fb994',802,'post','attachment',1,271,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-207','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg',NULL,'802','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg','802','attachment-image','{\"width\":800,\"height\":1200,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg\",\"size\":\"full\",\"id\":802,\"alt\":\"\",\"pixels\":960000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:41:48','2021-05-11 20:41:48',1,NULL,NULL,NULL,NULL,0,NULL),(27,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg','126:38beefed1cfe378a4685ec8cb039640e',805,'post','attachment',1,271,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-72','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg',NULL,'805','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg','805','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg\",\"size\":\"full\",\"id\":805,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-05-11 20:41:48','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(28,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg','116:3fe0785ed1fc18ac7217b88919698cce',590,'post','attachment',1,271,NULL,NULL,'EVENTS_Thirsk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',NULL,'590','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg','590','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":590,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,6,NULL,'2021-05-11 20:41:48','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(29,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/','75:c655d148fee7c9b91a823cabaa750e61',452,'post','page',1,0,NULL,NULL,'What&#8217;s Included','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7,3,NULL,'2021-05-11 20:41:48','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(30,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg','119:da257fecaa55c0c8ff8b4e60aff220f4',615,'post','attachment',1,452,NULL,NULL,'The-Barns_Thirks-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg',NULL,'615','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg','615','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":615,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-05-11 20:41:48','2021-05-11 20:50:08',1,NULL,NULL,NULL,NULL,0,NULL),(31,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500.png','106:08f3e95b1b560e93fdb867cca287c807',885,'post','attachment',1,271,NULL,NULL,'coco-member-500','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500.png',NULL,'885','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500.png','885','attachment-image','{\"width\":500,\"height\":507,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500.png\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500.png\",\"size\":\"full\",\"id\":885,\"alt\":\"\",\"pixels\":253500,\"type\":\"image/png\"}',NULL,6,NULL,'2021-05-11 20:41:48','2021-05-11 20:55:21',1,NULL,NULL,NULL,NULL,0,NULL),(32,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo.png','117:7f6d9a38b49949d254660ee973599721',883,'post','attachment',1,271,NULL,NULL,'UNVEILED-MemberBadge-Photo','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo.png',NULL,'883','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-1024x1024.png','883','attachment-image','{\"width\":1024,\"height\":1024,\"path\":\"2021/05/UNVEILED-MemberBadge-Photo-1024x1024.png\",\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-1024x1024.png\",\"size\":\"large\",\"id\":883,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image/png\"}',NULL,6,NULL,'2021-05-11 20:41:48','2021-05-11 20:55:21',1,NULL,NULL,NULL,NULL,0,NULL),(33,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/','60:e27ba8f570be3320a8fca4c60fbd8eb9',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Stunning barn conversion perfect for weddings, conferences and events','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'','','','',NULL,NULL,NULL,10,NULL,'2021-05-11 20:42:05','2021-05-13 11:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(34,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg','122:56a11e603394f71104663e7d01f8aa57',957,'post','attachment',1,271,NULL,NULL,'thirsk-lodge-barns-on-Hitched','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',NULL,'957','attachment-image',NULL,NULL,NULL,'957','attachment-image',NULL,NULL,6,NULL,'2021-05-11 20:44:58','2021-05-11 20:55:21',1,NULL,NULL,NULL,NULL,0,NULL),(35,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/slides/thirks-lodge-barns-2/','88:2868ae08d5b9963bf4bc166f4251a4da',852,'post','slides',1,0,NULL,NULL,'THIRKS LODGE BARNS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-05-11 20:47:00','2021-05-11 20:17:13',1,NULL,NULL,NULL,NULL,0,NULL),(36,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=960','72:9dca50ac3314bd6033c3c8f325b50f1e',960,'post','page',1,0,NULL,NULL,'accreditations row','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-05-11 20:47:46','2021-05-13 09:20:52',1,NULL,NULL,NULL,NULL,0,NULL),(37,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/portfolio_page/','75:cac79456bc9e88898f484e6ae6cc920c',NULL,'post-type-archive','portfolio_page',NULL,NULL,'%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%','','Portfolio',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 20:48:02','2021-05-11 19:48:02',1,NULL,NULL,NULL,NULL,0,NULL),(38,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg','123:dc928f493898507ce15d0a4923b51f10',631,'post','attachment',1,403,NULL,NULL,'Food-&#038;-Drinks_Thirsk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg',NULL,'631','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg','631','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg\",\"size\":\"full\",\"id\":631,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:50:08','2021-05-11 20:50:08',1,NULL,NULL,NULL,NULL,0,NULL),(39,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg','123:ad377d44f71e13cae55d85955c272e41',626,'post','attachment',1,403,NULL,NULL,'Thirsk-Lodge-Barns_Accommodation','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg',NULL,'626','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg','626','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg\",\"size\":\"full\",\"id\":626,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-05-11 20:50:08','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(40,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg','118:5249cab8b97e3a9c612090e3b6165a9f',335,'post','attachment',1,0,NULL,NULL,'Letty+Will_Thirsk-Lodge-Barn','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg',NULL,'335','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg','335','attachment-image','{\"width\":1920,\"height\":1280,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg\",\"size\":\"full\",\"id\":335,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-05-11 20:50:08','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(41,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg','135:bd82ce4c1b5c529f52012a5d62805607',819,'post','attachment',1,452,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-209-Gallery','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg',NULL,'819','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg','819','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg\",\"size\":\"full\",\"id\":819,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,4,NULL,'2021-05-11 20:50:08','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(42,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg','128:b7fb783a69cf4de10e79661fd2960b60',843,'post','attachment',1,187,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-72','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg',NULL,'843','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg','843','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1.jpg\",\"size\":\"full\",\"id\":843,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:51:19','2021-05-11 20:51:19',1,NULL,NULL,NULL,NULL,0,NULL),(43,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg','126:757f8121ce4dac0abe1f3f76c0aad106',814,'post','attachment',1,452,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-30','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg',NULL,'814','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg','814','attachment-image','{\"width\":800,\"height\":1200,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30.jpg\",\"size\":\"full\",\"id\":814,\"alt\":\"\",\"pixels\":960000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:51:19','2021-05-11 20:51:19',1,NULL,NULL,NULL,NULL,0,NULL),(44,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/masonry_gallery/342/','80:834cda141f73f0f359886dc61721dcd5',342,'post','masonry_gallery',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg',NULL,'324','featured-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg','324','featured-image','{\"width\":1920,\"height\":1280,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg\",\"size\":\"full\",\"id\":324,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-05-11 20:51:19','2021-05-11 19:51:19',1,NULL,NULL,NULL,NULL,0,NULL),(45,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg','127:ea0dcf4c7a458ea26d925342d2b8bade',365,'post','attachment',1,342,NULL,NULL,'Thirsk-Lodge-Barn-Venue-illustration','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg',NULL,'365','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg','365','attachment-image','{\"width\":1920,\"height\":1261,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg\",\"size\":\"full\",\"id\":365,\"alt\":\"\",\"pixels\":2421120,\"type\":\"image/jpeg\"}',NULL,3,NULL,'2021-05-11 20:51:19','2021-05-11 20:53:57',1,NULL,NULL,NULL,NULL,0,NULL),(46,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg','121:dde8defded11968a4890559923501c87',628,'post','attachment',1,403,NULL,NULL,'Food-&#038;-Drinks_Thirsk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg',NULL,'628','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg','628','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":628,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-05-11 20:51:19','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(47,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg','113:e97a69840cfe0c7dda339b3e5fa41843',602,'post','attachment',1,459,NULL,NULL,'Thirsk-Lodge-Barn_Food','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg',NULL,'602','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg','602','attachment-image','{\"width\":692,\"height\":695,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg\",\"size\":\"full\",\"id\":602,\"alt\":\"\",\"pixels\":480940,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:52:50','2021-05-11 20:52:50',1,NULL,NULL,NULL,NULL,0,NULL),(48,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg','124:52b82f20812d65ac4a595b1cad90d12d',603,'post','attachment',1,459,NULL,NULL,'Thirsk-Lodge-Barn_Food-Drinks_Bar','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg',NULL,'603','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg','603','attachment-image','{\"width\":692,\"height\":695,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg\",\"size\":\"full\",\"id\":603,\"alt\":\"\",\"pixels\":480940,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-11 20:52:50','2021-05-11 20:52:50',1,NULL,NULL,NULL,NULL,0,NULL),(49,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg','130:866b5d651e0a2d6211757a7ca710a468',616,'post','attachment',1,452,NULL,NULL,'Wedding-Breakfast-at-Thirks-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg',NULL,'616','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg','616','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":616,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,3,NULL,'2021-05-11 20:53:57','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(50,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/19/another-blog-post/','89:9a659e7bcaeecd8d9cad4e304767c406',388,'post','post',1,0,NULL,NULL,'Another Blog post','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg',NULL,'320','featured-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg','320','featured-image','{\"width\":1920,\"height\":1280,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-2021-wedding-venue.jpg\",\"size\":\"full\",\"id\":320,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-05-11 21:02:13','2021-05-11 20:03:27',1,NULL,NULL,NULL,NULL,0,NULL),(51,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=968','66:b3bea0cc7c38f12336a022f6b20684f1',968,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:02:26','2021-05-11 20:02:26',1,NULL,NULL,NULL,NULL,0,NULL),(52,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/18/hello-world/','83:3d50ac6b99cc353025237f64bde1d267',1,'post','post',1,0,NULL,NULL,'Hello world!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg',NULL,'365','featured-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg','365','featured-image','{\"width\":1920,\"height\":1261,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg\",\"size\":\"full\",\"id\":365,\"alt\":\"\",\"pixels\":2421120,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-05-11 21:02:31','2021-05-11 20:03:27',1,NULL,NULL,NULL,NULL,0,NULL),(53,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2017/11/29/hello-world-2/','85:147c0c06b5ac694661853f2617ab389b',276,'post','post',1,0,NULL,NULL,'Hello world!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg',NULL,'324','featured-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg','324','featured-image','{\"width\":1920,\"height\":1280,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barns_Wedding-venue-North-Yorkshire-_Thirsk.jpg\",\"size\":\"full\",\"id\":324,\"alt\":\"\",\"pixels\":2457600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-05-11 21:02:47','2021-05-11 20:03:27',1,NULL,NULL,NULL,NULL,0,NULL),(54,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/19/another-title/','85:9a8f37527a073736170901f947c6303f',386,'post','post',1,0,NULL,NULL,'Another Title','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk-scaled.jpg',NULL,'323','featured-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk-scaled.jpg','323','featured-image','{\"width\":1704,\"height\":2560,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk-scaled.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn_Wedding-venue-Thirsk-scaled.jpg\",\"size\":\"full\",\"id\":323,\"alt\":\"\",\"pixels\":4362240,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-05-11 21:03:07','2021-05-11 20:03:27',1,NULL,NULL,NULL,NULL,0,NULL),(55,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/category/uncategorized/','83:e2b859791828e4679332403438006706',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:03:27','2021-05-11 20:03:27',1,NULL,NULL,NULL,NULL,0,NULL),(56,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=969','66:b081c4f3b815427bae7e699985a078df',969,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:03:38','2021-05-11 20:03:38',1,NULL,NULL,NULL,NULL,0,NULL),(57,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/2021/03/19/lsdfjlsdkjflksdjfsidj/','93:a293b3339a722dea5e1526d1ed8fe4b7',383,'post','post',1,0,NULL,NULL,'lsdfjlsdkjflksdjfsidj','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg',NULL,'329','featured-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg','329','featured-image','{\"width\":1920,\"height\":1282,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Wedding-Venue_Thirsk_Thirsk-Lodge-Barn.jpg\",\"size\":\"full\",\"id\":329,\"alt\":\"\",\"pixels\":2461440,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2021-05-11 21:03:48','2021-05-11 20:03:48',1,NULL,NULL,NULL,NULL,0,NULL),(58,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns-Logo.png','114:39a1dbe752e6b023d6d66c7f028f9bdd',970,'post','attachment',1,0,NULL,NULL,'Thirsk-Lodge-Barns-Logo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns-Logo.png',NULL,'970','attachment-image',NULL,NULL,NULL,'970','attachment-image',NULL,NULL,NULL,NULL,'2021-05-11 21:10:34','2021-05-11 20:10:34',1,NULL,NULL,NULL,NULL,0,NULL),(59,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=971','66:52afd9c0edac91dfc801f1012aeb0a60',971,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:10:50','2021-05-11 20:10:50',1,NULL,NULL,NULL,NULL,0,NULL),(60,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=972','66:a56d48ac7bdcd25ca8dcf3ccfca38aec',972,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:11:25','2021-05-11 20:11:25',1,NULL,NULL,NULL,NULL,0,NULL),(61,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=973','66:fca511e53ad9257cfb8a96fa8e39c958',973,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:11:45','2021-05-11 20:11:45',1,NULL,NULL,NULL,NULL,0,NULL),(62,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=974','66:9958f0c68cdec634818fde905daa9b63',974,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:12:37','2021-05-11 20:12:37',1,NULL,NULL,NULL,NULL,0,NULL),(63,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/slides-category/home/','81:8def5fbf951cc3852936119cbb0f07e0',5,'term','slides_category',NULL,NULL,NULL,NULL,'home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:17:13','2021-05-11 20:17:13',1,NULL,NULL,NULL,NULL,0,NULL),(64,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/test/','65:802d8f73567f68bccf7f1a9a086f6d4f',266,'post','page',1,0,NULL,NULL,'Test','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:37:48','2021-05-11 20:37:48',1,NULL,NULL,NULL,NULL,0,NULL),(65,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/','73:b3b04292a7ee3c7f51605a549b23e1bf',435,'post','page',1,0,NULL,NULL,'PRIVATE HIRE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,'2021-05-11 21:38:41','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(66,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/testimonial-banner/','79:4db5efe697a85dd772227d546f428b0a',469,'post','page',1,0,NULL,NULL,'Testimonial Banner','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:39:41','2021-05-11 20:39:41',1,NULL,NULL,NULL,NULL,0,NULL),(67,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns-2/','72:6aeb39986194fb14ae8fcbd50b51693f',450,'post','page',1,0,NULL,NULL,'The Barns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:45:01','2021-05-11 20:45:01',1,NULL,NULL,NULL,NULL,0,NULL),(68,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/sample-page/','72:ca90c39c6e00317bd7fc91b882689c87',2,'post','page',1,0,NULL,NULL,'Sample Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-11 21:45:40','2021-05-11 20:45:40',1,NULL,NULL,NULL,NULL,0,NULL),(69,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?p=975','66:8d303b524012f66659ea0513700f0e4f',975,'post','post',1,0,NULL,NULL,'Auto Draft','auto-draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-12 05:45:10','2021-05-12 04:45:10',1,NULL,NULL,NULL,NULL,0,NULL),(70,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/?page_id=3','70:fbf2bdc4f819583da3e60a76d2583c5e',3,'post','page',1,0,NULL,NULL,'Privacy Policy','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-05-13 10:17:28','2021-05-13 09:17:28',1,NULL,NULL,NULL,NULL,0,NULL),(71,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg','118:077184a654a9361a1fa04f962a253145',910,'post','attachment',1,433,NULL,NULL,'Open-Day_Thirsk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg',NULL,'910','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg','910','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":910,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-05-13 10:21:41','2021-05-13 11:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(72,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg','121:de092bfad31939ce3828e333ac5b218c',314,'post','attachment',1,271,NULL,NULL,'Christmas at Thirsk Lodge Barn','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg',NULL,'314','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg','314','attachment-image','{\"width\":1920,\"height\":1278,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg\",\"size\":\"full\",\"id\":314,\"alt\":\"\",\"pixels\":2453760,\"type\":\"image/jpeg\"}',NULL,2,NULL,'2021-05-13 10:21:41','2021-05-13 10:35:07',1,NULL,NULL,NULL,NULL,0,NULL),(73,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg','117:84d7a78642bd17172fec452b8657db75',355,'post','attachment',1,271,NULL,NULL,'Hitched_Thrisk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg',NULL,'355','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg','355','attachment-image','{\"width\":280,\"height\":180,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":355,\"alt\":\"\",\"pixels\":50400,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 10:21:41','2021-05-13 10:21:41',1,NULL,NULL,NULL,NULL,0,NULL),(74,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg','118:ceaf9381a51b5e0219200df9f0dd7e5b',356,'post','attachment',1,271,NULL,NULL,'Unveiled_Thirsk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg',NULL,'356','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg','356','attachment-image','{\"width\":280,\"height\":180,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":356,\"alt\":\"\",\"pixels\":50400,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 10:21:41','2021-05-13 10:21:41',1,NULL,NULL,NULL,NULL,0,NULL),(75,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg','114:5d321cf3262aaf6788db6f727ad8ae27',357,'post','attachment',1,271,NULL,NULL,'Coco_Thrisk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg',NULL,'357','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg','357','attachment-image','{\"width\":280,\"height\":180,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":357,\"alt\":\"\",\"pixels\":50400,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 10:21:41','2021-05-13 10:21:41',1,NULL,NULL,NULL,NULL,0,NULL),(76,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg','122:b26bf5a5ed5f5041e1302a1b4913fc61',751,'post','attachment',1,374,NULL,NULL,'Public-Event_Thirsk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg',NULL,'751','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg','751','attachment-image','{\"width\":32,\"height\":31,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":751,\"alt\":\"\",\"pixels\":992,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 10:22:47','2021-05-13 10:22:47',1,NULL,NULL,NULL,NULL,0,NULL),(77,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg','124:c76f0030efa2c57ab39c2ea66034db8e',750,'post','attachment',1,374,NULL,NULL,'Private-Event_Thirslk-Lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg',NULL,'750','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg','750','attachment-image','{\"width\":32,\"height\":31,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg\",\"size\":\"full\",\"id\":750,\"alt\":\"\",\"pixels\":992,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 10:22:47','2021-05-13 10:22:47',1,NULL,NULL,NULL,NULL,0,NULL),(78,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg','121:9506d30b0b52d0a6e28b563dc5073ec9',933,'post','attachment',1,374,NULL,NULL,'Thirsk-lodge-Barns_Closed-icon','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg',NULL,'933','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg','933','attachment-image','{\"width\":32,\"height\":31,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg\",\"size\":\"full\",\"id\":933,\"alt\":\"\",\"pixels\":992,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 10:22:47','2021-05-13 10:22:47',1,NULL,NULL,NULL,NULL,0,NULL),(79,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg','126:fb93ce7abfdd71edb40d9692e9318acc',804,'post','attachment',1,271,NULL,NULL,'Thirsk-Lodge-Barns_Wedding-venue-20','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg',NULL,'804','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg','804','attachment-image','{\"width\":800,\"height\":1200,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20.jpg\",\"size\":\"full\",\"id\":804,\"alt\":\"\",\"pixels\":960000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 11:17:03','2021-05-13 11:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(80,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg','121:776894e13c651f33c7c62c64650632ed',906,'post','attachment',1,433,NULL,NULL,'sushi-night_Thirsk-lodge-Barns','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg',NULL,'906','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg','906','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg\",\"size\":\"full\",\"id\":906,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 11:17:03','2021-05-13 11:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(81,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg','127:e85561941ba912e23783eb76d18d0c76',898,'post','attachment',1,433,NULL,NULL,'_BBQ-AT-THE-BARNS-WITH-BLUES-CATERING','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg',NULL,'898','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg','898','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg\",\"size\":\"full\",\"id\":898,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 11:17:03','2021-05-13 11:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(82,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg','116:9f1fc05f7f0888ddd2daa42f07299414',905,'post','attachment',1,433,NULL,NULL,'Blues-Catering-Game-Lunch','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg',NULL,'905','attachment-image',NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg','905','attachment-image','{\"width\":1000,\"height\":667,\"url\":\"https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg\",\"path\":\"/home/partridg/thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg\",\"size\":\"full\",\"id\":905,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',NULL,1,NULL,'2021-05-13 11:17:03','2021-05-13 11:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(83,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo.png','138:596501dd298b52f0a6237800126b5994',981,'post','attachment',1,0,NULL,NULL,'thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-Lodge-Barns_Wedding-and-Event-Venue_logo.png',NULL,'981','attachment-image',NULL,NULL,NULL,'981','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:28:43','2021-05-13 10:28:43',1,NULL,NULL,NULL,NULL,0,NULL),(84,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Venue_Thirsk-Lodge-Barn.png','122:3093902d886aae33470685a93a94acf9',982,'post','attachment',1,0,NULL,NULL,'Wedding Venue_Thirsk Lodge Barn','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Venue_Thirsk-Lodge-Barn.png',NULL,'982','attachment-image',NULL,NULL,NULL,'982','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:33:48','2021-05-13 10:33:48',1,NULL,NULL,NULL,NULL,0,NULL),(85,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns-Logo-for-web.png','122:6c2f12ac0c4d92411a25a8dc0b3abbf1',983,'post','attachment',1,0,NULL,NULL,'Thirsk Lodge Barns Logo for web','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns-Logo-for-web.png',NULL,'983','attachment-image',NULL,NULL,NULL,'983','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:35:35','2021-05-13 10:35:35',1,NULL,NULL,NULL,NULL,0,NULL),(86,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-600.png','98:bee0a77699fdc8bd67c947d8044d90a6',984,'post','attachment',1,0,NULL,NULL,'TLB-600','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-600.png',NULL,'984','attachment-image',NULL,NULL,NULL,'984','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:39:08','2021-05-13 10:39:08',1,NULL,NULL,NULL,NULL,0,NULL),(87,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-600-1.png','100:9b715c98153e4dcfe1c54f1a0e4a5692',985,'post','attachment',1,0,NULL,NULL,'TLB-600','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-600-1.png',NULL,'985','attachment-image',NULL,NULL,NULL,'985','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:41:25','2021-05-13 10:41:25',1,NULL,NULL,NULL,NULL,0,NULL),(88,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-350.png','98:4b006ab29dc51b252641674e5bfb7d01',986,'post','attachment',1,0,NULL,NULL,'TLB-350','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-350.png',NULL,'986','attachment-image',NULL,NULL,NULL,'986','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:42:06','2021-05-13 10:42:06',1,NULL,NULL,NULL,NULL,0,NULL),(89,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-243.png','98:62d1ae08be16daca922f6d01936e1569',987,'post','attachment',1,0,NULL,NULL,'TLB-243','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-243.png',NULL,'987','attachment-image',NULL,NULL,NULL,'987','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:43:25','2021-05-13 10:43:25',1,NULL,NULL,NULL,NULL,0,NULL),(90,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png','108:f20f07fcdffc03f467574193d8d56e90',988,'post','attachment',1,0,NULL,NULL,'TLB-logo_Whiteweb','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/TLB-logo_Whiteweb.png',NULL,'988','attachment-image',NULL,NULL,NULL,'988','attachment-image',NULL,NULL,NULL,NULL,'2021-05-13 11:47:36','2021-05-13 10:47:36',1,NULL,NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `wpgb_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wpgb_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_yoast_indexable_hierarchy`
--

LOCK TABLES `wpgb_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wpgb_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wpgb_yoast_indexable_hierarchy` VALUES (2,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(6,0,0,1),(7,0,0,1),(8,0,0,1),(9,0,0,1),(10,0,0,1),(11,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(17,0,0,1),(18,0,0,1),(19,0,0,1),(20,0,0,1),(21,0,0,1),(22,2,1,1),(23,0,0,1),(24,0,0,1),(25,2,1,1),(26,2,1,1),(27,2,1,1),(28,2,1,1),(29,0,0,1),(30,29,1,1),(31,2,1,1),(32,2,1,1),(34,2,1,1),(35,0,0,1),(36,0,0,1),(38,24,1,1),(39,24,1,1),(40,0,0,1),(41,29,1,1),(42,17,1,1),(43,29,1,1),(44,0,0,1),(45,44,1,1),(46,24,1,1),(47,15,1,1),(48,15,1,1),(49,29,1,1),(50,0,0,1),(51,0,0,1),(52,0,0,1),(53,0,0,1),(54,0,0,1),(55,0,0,1),(56,0,0,1),(57,0,0,1),(58,0,0,1),(59,0,0,1),(60,0,0,1),(61,0,0,1),(62,0,0,1),(63,0,0,1),(64,0,0,1),(65,0,0,1),(66,0,0,1),(67,0,0,1),(68,0,0,1),(69,0,0,1),(70,0,0,1),(71,14,1,1),(72,2,1,1),(73,2,1,1),(74,2,1,1),(75,2,1,1),(76,7,1,1),(77,7,1,1),(78,7,1,1),(79,2,1,1),(80,14,1,1),(81,14,1,1),(82,14,1,1),(83,0,0,1),(84,0,0,1),(85,0,0,1),(86,0,0,1),(87,0,0,1),(88,0,0,1),(89,0,0,1),(90,0,0,1);
/*!40000 ALTER TABLE `wpgb_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_yoast_migrations`
--

DROP TABLE IF EXISTS `wpgb_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `wpgb_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_yoast_migrations`
--

LOCK TABLES `wpgb_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wpgb_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wpgb_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134');
/*!40000 ALTER TABLE `wpgb_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpgb_yoast_primary_term`
--

DROP TABLE IF EXISTS `wpgb_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `blog_id` bigint(20) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_yoast_primary_term`
--

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

--
-- Table structure for table `wpgb_yoast_seo_links`
--

DROP TABLE IF EXISTS `wpgb_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpgb_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=219 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpgb_yoast_seo_links`
--

LOCK TABLES `wpgb_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wpgb_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wpgb_yoast_seo_links` VALUES (58,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/',452,374,'internal',29,7,NULL,NULL,NULL,NULL,NULL),(59,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns',452,447,'internal',29,23,NULL,NULL,NULL,NULL,NULL),(60,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drink',452,NULL,'internal',29,NULL,NULL,NULL,NULL,NULL,NULL),(61,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/',452,457,'internal',29,4,NULL,NULL,NULL,NULL,NULL),(62,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/',452,187,'internal',29,17,NULL,NULL,NULL,NULL,NULL),(63,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability',452,374,'internal',29,7,NULL,NULL,NULL,NULL,NULL),(64,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',452,433,'internal',29,14,NULL,NULL,NULL,NULL,NULL),(65,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72-1-600x600.jpg',452,843,'image-in',29,42,667,1000,199725,NULL,NULL),(66,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-30-600x800.jpg',452,814,'image-in',29,43,1200,800,322333,NULL,NULL),(67,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg',452,365,'image-in',29,45,1261,1920,549529,NULL,NULL),(68,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg',452,628,'image-in',29,46,667,1000,190180,NULL,NULL),(69,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg',452,626,'image-in',29,39,667,1000,159247,NULL,NULL),(70,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg',452,819,'image-in',29,41,667,1000,225586,NULL,NULL),(71,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg',452,335,'image-in',29,40,1280,1920,502579,NULL,NULL),(72,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',452,590,'image-in',29,28,667,1000,155220,NULL,NULL),(73,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',452,957,'image-in',29,34,150,150,12214,NULL,NULL),(74,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500-150x150.png',452,885,'image-in',29,31,507,500,20601,NULL,NULL),(75,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-150x150.png',452,883,'image-in',29,32,2480,2480,3927153,NULL,NULL),(76,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wine-List-Bar.pdf',459,NULL,'internal',15,NULL,NULL,NULL,NULL,NULL,NULL),(77,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',459,433,'internal',15,14,NULL,NULL,NULL,NULL,NULL),(78,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/',459,447,'internal',15,23,NULL,NULL,NULL,NULL,NULL),(79,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/',459,452,'internal',15,29,NULL,NULL,NULL,NULL,NULL),(80,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/',459,457,'internal',15,4,NULL,NULL,NULL,NULL,NULL),(81,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/',459,187,'internal',15,17,NULL,NULL,NULL,NULL,NULL),(82,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/',459,374,'internal',15,7,NULL,NULL,NULL,NULL,NULL),(83,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',459,433,'internal',15,14,NULL,NULL,NULL,NULL,NULL),(84,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food.jpg',459,602,'image-in',15,47,695,692,100256,NULL,NULL),(85,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barn_Food-Drinks_Bar.jpg',459,603,'image-in',15,48,695,692,143978,NULL,NULL),(86,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg',459,365,'image-in',15,45,1261,1920,549529,NULL,NULL),(87,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg',459,805,'image-in',15,27,667,1000,199725,NULL,NULL),(88,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg',459,626,'image-in',15,39,667,1000,159247,NULL,NULL),(89,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg',459,819,'image-in',15,41,667,1000,225586,NULL,NULL),(90,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg',459,335,'image-in',15,40,1280,1920,502579,NULL,NULL),(91,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',459,590,'image-in',15,28,667,1000,155220,NULL,NULL),(92,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',459,957,'image-in',15,34,150,150,12214,NULL,NULL),(93,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500-150x150.png',459,885,'image-in',15,31,507,500,20601,NULL,NULL),(94,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-150x150.png',459,883,'image-in',15,32,2480,2480,3927153,NULL,NULL),(127,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns',403,447,'internal',24,23,NULL,NULL,NULL,NULL,NULL),(128,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/',403,452,'internal',24,29,NULL,NULL,NULL,NULL,NULL),(129,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/food-drinks/',403,459,'internal',24,15,NULL,NULL,NULL,NULL,NULL),(130,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/accommodation/',403,457,'internal',24,4,NULL,NULL,NULL,NULL,NULL),(131,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/',403,374,'internal',24,7,NULL,NULL,NULL,NULL,NULL),(132,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/',403,164,'internal',24,12,NULL,NULL,NULL,NULL,NULL),(133,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg',403,615,'image-in',24,30,667,1000,360049,NULL,NULL),(134,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg',403,805,'image-in',24,27,667,1000,199725,NULL,NULL),(135,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns-1.jpg',403,631,'image-in',24,38,667,1000,190180,NULL,NULL),(136,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation.jpg',403,626,'image-in',24,39,667,1000,159247,NULL,NULL),(137,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg',403,335,'image-in',24,40,1280,1920,502579,NULL,NULL),(138,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg',403,819,'image-in',24,41,667,1000,225586,NULL,NULL),(139,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',403,957,'image-in',24,34,150,150,12214,NULL,NULL),(140,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500-150x150.png',403,885,'image-in',24,31,507,500,20601,NULL,NULL),(141,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-150x150.png',403,883,'image-in',24,32,2480,2480,3927153,NULL,NULL),(142,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/',457,447,'internal',4,23,NULL,NULL,NULL,NULL,NULL),(143,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/whats-included/',457,452,'internal',4,29,NULL,NULL,NULL,NULL,NULL),(144,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/gallery/',457,187,'internal',4,17,NULL,NULL,NULL,NULL,NULL),(145,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/',457,374,'internal',4,7,NULL,NULL,NULL,NULL,NULL),(146,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',457,433,'internal',4,14,NULL,NULL,NULL,NULL,NULL),(147,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Accommodation-600x667.jpg',457,626,'image-in',4,39,667,1000,159247,NULL,NULL),(148,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Thirsk-Lodge-Barn-Venue-illustration.jpg',457,365,'image-in',4,45,1261,1920,549529,NULL,NULL),(149,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg',457,805,'image-in',4,27,667,1000,199725,NULL,NULL),(150,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg',457,616,'image-in',4,49,667,1000,271879,NULL,NULL),(151,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-209-Gallery.jpg',457,819,'image-in',4,41,667,1000,225586,NULL,NULL),(152,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/LettyWill_Thirsk-Lodge-Barn.jpg',457,335,'image-in',4,40,1280,1920,502579,NULL,NULL),(153,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',457,590,'image-in',4,28,667,1000,155220,NULL,NULL),(154,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',457,957,'image-in',4,34,150,150,12214,NULL,NULL),(155,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500-150x150.png',457,885,'image-in',4,31,507,500,20601,NULL,NULL),(156,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-150x150.png',457,883,'image-in',4,32,2480,2480,3927153,NULL,NULL),(157,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/',440,164,'internal',10,12,NULL,NULL,NULL,NULL,NULL),(158,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',440,433,'internal',10,14,NULL,NULL,NULL,NULL,NULL),(159,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/',440,435,'internal',10,65,NULL,NULL,NULL,NULL,NULL),(160,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/',440,437,'internal',10,11,NULL,NULL,NULL,NULL,NULL),(161,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg',440,910,'image-in',10,71,667,1000,162544,NULL,NULL),(162,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',440,590,'image-in',10,28,667,1000,155220,NULL,NULL),(163,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg',440,616,'image-in',10,49,667,1000,271879,NULL,NULL),(164,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg',440,314,'image-in',10,72,1278,1920,334382,NULL,NULL),(165,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Hitched_Thrisk-Lodge-Barns.jpg',440,355,'image-in',10,73,180,280,9703,NULL,NULL),(166,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Unveiled_Thirsk-Lodge-Barns.jpg',440,356,'image-in',10,74,180,280,12787,NULL,NULL),(167,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Coco_Thrisk-Lodge-Barns.jpg',440,357,'image-in',10,75,180,280,14985,NULL,NULL),(168,'#',374,NULL,'internal',7,33,NULL,NULL,NULL,NULL,NULL),(169,'#',374,NULL,'internal',7,33,NULL,NULL,NULL,NULL,NULL),(170,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',374,433,'internal',7,14,NULL,NULL,NULL,NULL,NULL),(171,'mailto:enquiries@thirsklodgebarns.com',374,NULL,'external',7,NULL,NULL,NULL,NULL,NULL,NULL),(172,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Public-Event_Thirsk-Lodge-Barns.jpg',374,751,'image-in',7,76,31,32,1139,NULL,NULL),(173,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Private-Event_Thirslk-Lodge-Barns.jpg',374,750,'image-in',7,77,31,32,1139,NULL,NULL),(174,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-lodge-Barns_Closed-icon.jpg',374,933,'image-in',7,78,31,32,1143,NULL,NULL),(175,'',437,NULL,'internal',11,33,NULL,NULL,NULL,NULL,NULL),(176,'',437,NULL,'internal',11,33,NULL,NULL,NULL,NULL,NULL),(177,'',437,NULL,'internal',11,33,NULL,NULL,NULL,NULL,NULL),(182,'mailto:enquiries@thirsklodgebarns.com',164,NULL,'external',12,NULL,NULL,NULL,NULL,NULL,NULL),(183,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',164,957,'image-in',12,34,150,150,12214,NULL,NULL),(184,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500-150x150.png',164,885,'image-in',12,31,507,500,20601,NULL,NULL),(185,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-150x150.png',164,883,'image-in',12,32,2480,2480,3927153,NULL,NULL),(186,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar',413,433,'internal',13,14,NULL,NULL,NULL,NULL,NULL),(187,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/private-hire/',413,435,'internal',13,65,NULL,NULL,NULL,NULL,NULL),(188,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/business/',413,440,'internal',13,10,NULL,NULL,NULL,NULL,NULL),(189,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/christmas/',413,437,'internal',13,11,NULL,NULL,NULL,NULL,NULL),(190,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/contact/',413,164,'internal',13,12,NULL,NULL,NULL,NULL,NULL),(191,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',413,590,'image-in',13,28,667,1000,155220,NULL,NULL),(192,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Wedding-Breakfast-at-Thirks-Lodge-Barns.jpg',413,616,'image-in',13,49,667,1000,271879,NULL,NULL),(193,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Food-Drinks_Thirsk-Lodge-Barns.jpg',413,628,'image-in',13,46,667,1000,190180,NULL,NULL),(194,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/03/Christmas-at-Thirsk-Lodge-Barn.jpg',413,314,'image-in',13,72,1278,1920,334382,NULL,NULL),(195,'',433,NULL,'internal',14,33,NULL,NULL,NULL,NULL,NULL),(196,'',433,NULL,'internal',14,33,NULL,NULL,NULL,NULL,NULL),(197,'',433,NULL,'internal',14,33,NULL,NULL,NULL,NULL,NULL),(198,'',433,NULL,'internal',14,33,NULL,NULL,NULL,NULL,NULL),(199,'',433,NULL,'internal',14,33,NULL,NULL,NULL,NULL,NULL),(200,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Open-Day_Thirsk-Lodge-Barns.jpg',433,910,'image-in',14,71,667,1000,162544,NULL,NULL),(201,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-20-600x400.jpg',433,804,'image-in',14,79,1200,800,350512,NULL,NULL),(202,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/sushi-night_Thirsk-lodge-Barns.jpg',433,906,'image-in',14,80,667,1000,162346,NULL,NULL),(203,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/BBQ-AT-THE-BARNS-WITH-BLUES-CATERING.jpg',433,898,'image-in',14,81,667,1000,274703,NULL,NULL),(204,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Blues-Catering-Game-Lunch.jpg',433,905,'image-in',14,82,667,1000,285862,NULL,NULL),(205,'https://georginaharrisonphotography.co.uk/',187,NULL,'external',17,NULL,NULL,NULL,NULL,NULL,NULL),(206,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/the-barns/',271,447,'internal',2,23,NULL,NULL,NULL,NULL,NULL),(207,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/',271,403,'internal',2,24,NULL,NULL,NULL,NULL,NULL),(208,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/events-calendar/',271,433,'internal',2,14,NULL,NULL,NULL,NULL,NULL),(209,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/availability/',271,374,'internal',2,7,NULL,NULL,NULL,NULL,NULL),(210,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/weddings/',271,403,'internal',2,24,NULL,NULL,NULL,NULL,NULL),(211,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-21.jpg',271,810,'image-in',2,25,1199,800,233669,NULL,NULL),(212,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-207.jpg',271,802,'image-in',2,26,1200,800,492773,NULL,NULL),(213,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/Thirsk-Lodge-Barns_Wedding-venue-72.jpg',271,805,'image-in',2,27,667,1000,199725,NULL,NULL),(214,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/EVENTS_Thirsk-Lodge-Barns.jpg',271,590,'image-in',2,28,667,1000,155220,NULL,NULL),(215,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/The-Barns_Thirks-Lodge-Barns.jpg',271,615,'image-in',2,30,667,1000,360049,NULL,NULL),(216,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/thirsk-lodge-barns-on-Hitched-1.jpg',271,957,'image-in',2,34,150,150,12214,NULL,NULL),(217,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/coco-member-500-150x150.png',271,885,'image-in',2,31,507,500,20601,NULL,NULL),(218,'https://www.thirsklodgebarnsstaging.partridgecreative.co.uk/wp-content/uploads/2021/05/UNVEILED-MemberBadge-Photo-150x150.png',271,883,'image-in',2,32,2480,2480,3927153,NULL,NULL);
/*!40000 ALTER TABLE `wpgb_yoast_seo_links` 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 2021-05-13 20:55:40
